Reputation: 256
My page loads jQuery. Is there any way to find out which version of jQuery that is?
Upvotes: 20
Views: 18504
Reputation: 5088
Just open Chrome Console or Firebug and type while in your page
$().jquery;
Upvotes: 6
Reputation: 68616
You can use either $().jquery;
or $.fn.jquery
Which will return a string containing the version number, e.g. 1.6.2.
Upvotes: 33