7
The code below shows me perfectly if the jQuery
was or was not loaded:
if (jQuery) {
$('div#home_login').attr('style', 'background: green');
} else {
$('div#home_login').attr('style', 'background: red'); }
However, how do I know which version was loaded, or versions, because I have some plugins that do not work with certain versions, such as autocomplete
and the .on
that do not work with the same version.
I wanted, when entering the page, to know which version or versions were loaded.
show, it worked cool, I just don’t know if it will display all versions loaded, hopefully.
– flourigh