Menu

Toshimaru's Blog

How to check jQuery version

After opening Chrome DevTools console on the website where jQuery is used, run the following code.

$.fn.jquery
'1.11.3'

or

jQuery.fn.jquery
'1.11.3'

See also

Load more