Answer the question
In order to leave comments, you need to log in
How to check for attributes?
Hello.
How to check by attributes and add this or that function depending on the attributes? For example:
I call a tooltip on all elements with this attribute:
But there are certain tooltips where a delay is needed, something like this:$('[data-toggle="tooltip"]').tooltip();
$('[data-toggle="tooltip"]').tooltip();
$('[data-toggle="tooltip"][tooltip-with-delay]').tooltip({
delay: { "show": 500, "hide": 100 }
});
Answer the question
In order to leave comments, you need to log in
Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-animation="".
Call as you called for data-toggle="tooltip"
, and inside add an anonymous function that will check for the presence tooltip-with-delay
and return
{
delay: { "show": 500, "hide": 100 }
}
if any
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question