destroy
optionI use both libraries and frameworks on couple of posts. They're, like, punching each other (collided, the libraries), and then boop! the post was gone (the
HTML
page went blank).To calm those, which by the way, each has the exact same function name, called
tooltip
, we need to call the destroyer.Bootstrap and jQuery UI also have that same "name" for the destroyer. It's called
destroy
.
To grab all elements with
title
attribute in each, use $( "[title]" )
selector.Call it on
$( window ).load()
eventIf you initialized the tooltip on
$( window ).load()
event, then you'd need to put setTimeout
to destroy it. Such as:
The [duration] needs to be changed to actual duration (in milliseconds). Like, 200, 500, etc.
We can also include the Bootstrap custom
data
attribute selector for tooltipThat can be:
[data-toggle='tooltip']
or [data-original-title]
.So, it'd be like:
If those didn't help
We can remove all
[title]
attribute from every DOM element.With jQuery
Just JavaScript
Either coding will remove the
[title]
attribute from every element which has it. Therefore, there's nothing to run from either library. In another word, the tooltip widget will be cancelled.
The last
My suggestions:
- Avoid using (COMPLETE) multiple JavaScript libraries and CSS frameworks on one page. Especially if they have the same methods/functions/selectors names. Implement only one kind.
If they have completely different purposes (and global names), then they'll be FINE to be implemented on a single page.- The jQuery UI library (download) can be customized. There's an option to not include some widgets/functionality to avoid the conflicts.
If you're using Google's CDN or other (free) CDNs, you don't want to mix them on one page. They'll punch each other, at some point.- If you need to do that (using libraries with the same global names), use
iframe
for the other page.
No comments:
Post a Comment
Tell me what you think...