The code below perfectly shows me whether jQuery
was uploaded:
if (jQuery) {
$('div#home_login').attr('style', 'background: green');
} else {
$('div#home_login').attr('style', 'background: red'); }
But 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 .on
that do not work with the same version.
I wanted to know when the version or versions were uploaded.