jQuery jquery Property Last Updated : 11 Jul, 2023 Comments Improve Suggest changes Like Article Like Report The jquery property is used to return the jQuery version number. Syntax $().jqueryExample: Return the version number. html <!DOCTYPE html> <html> <head> <style> h1 { color: green; } </style> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function () { $("button").on( "click", function () { let cu_version = $().jquery; alert("The running jQuery version is: " + cu_version); }); }); </script> </head> <body> <center> <h1>Geeks for Geeks</h1> <button> Check </button> </center> </body> </html> Output: Comment V Vijay Sirra Follow Improve V Vijay Sirra Follow Improve Article Tags : Web Technologies JQuery jQuery-Propertie Explore jQuery Tutorial 8 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read Like