How to get jQuery version by Chrome on website?

Dylan Wang
Aug 23, 2021

--

Using Google Chrome Console.

  1. Open the website by Google Chrome.
  2. Enter 「F12」, click the 「console
  3. Type the below function, and then type 「Enter
$(function() {
$('body').html(
'jQuery version:' + $().jquery
);
});

or

$(function() {
$('body').html(
'jQuery version:' + $.fn.jquery
);
});

Referenece:

--

--