How can I find out what jQuery version I’m using?
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 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;