I'm creating a bookmarklet and of course I'd like to use jQuery. But, if I include jQuery (append a script-tag to head) on a site, will the site itself work anymore, if it has some other js on?
Martti Laine
|
I'm creating a bookmarklet and of course I'd like to use jQuery. But, if I include jQuery (append a script-tag to head) on a site, will the site itself work anymore, if it has some other js on? Martti Laine |
|||
|
|
|
Will it break?....maybe :) There are 2 really common reasons off the top of my head that this would happen. If they're using another library that uses the
The other one would be they already have jQuery loaded (possibly a different version as well). I would just add a
This solution for already loaded has one caveat, if they had an old version of jQuery, you'll only have the features of that version. I don't know of a way to load an old version and a new one in the page and not have a lot of weird behavior...it just wasn't designed to do that. Also, I would combine these two work-arounds for the case that jQuery is already loaded and is the
|
|||||||||||
|