My page loads jQuery. Is there any way to find out which version of jQuery that is?
Type this command in the Chrome Developer Tools Javascript console window to see what version of the jQuery is being used on this page: console. log(jQuery(). jquery);
You can test if jQuery is loaded by opening your javascript console (in Chrome: Settings > More tools > Javascript console). Where the little blue arrow appears type: if(jQuery) alert('jQuery is loaded'); Press enter.
You can use $. ui. version , it's actually the property jQuery UI looks for when determining if it should load itself (if it's already there, abort).
You can use either $().jquery;
or $.fn.jquery
Which will return a string containing the version number, e.g. 1.6.2.
Just open Chrome Console or Firebug and type while in your page
$().jquery;
you can do:
alert($().jquery);
You can know the version by using:
jQuery.fn.jquery
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With