L
L
lavezzi12017-04-05 05:56:54
JavaScript
lavezzi1, 2017-04-05 05:56:54

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 }
});

That is, if there are these two attributes, then call the function with options.
thank!

Answer the question

In order to leave comments, you need to log in

2 answer(s)
P
Pavel, 2017-04-05
@lavezzi1

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-animation="".

just add the attribute to the elements where the delay is required data-delay='{"show":"500", "hide":"100"}'

A
Andrey Tokmakov, 2017-04-05
@NPC

Call as you called for data-toggle="tooltip", and inside add an anonymous function that will check for the presence tooltip-with-delayand return

{
    delay: { "show": 500, "hide": 100 }
}
if any

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question