JQUERY: Check for Current jquery Version

Miva Knowledge Base
Want to start an online store? We work with you from start to finish, from commerce platform to design to SEO.
Experience counts, and we have a lot.
Important Notice: This information is for internal reference only. Use at your own risk.

JQUERY: Check for Current jquery Version

Scot Ranney • December 18, 2023


check for jquery version:

<script>
if (typeof jQuery != 'undefined') { // jQuery is loaded => print the version
alert(jQuery.fn.jquery);
}
</script>

https://www.scotsscripts.com/mvblog/check-for-jquery-version.html

mvkb_js