Skip to content
Related Articles
Open in App
Not now

Related Articles

jQuery | jquery Property

Improve Article
Save Article
  • Last Updated : 27 Feb, 2019
Improve Article
Save Article

The jquery property is used to return the jQuery version number.

Syntax

$().jquery

Example: Return the version number.




<!DOCTYPE html>
<html>
  
<head>
    <style>
        h1 {
            color: green;
        }
    </style>
    <script src=
  </script>
     
  <script>
        $(document).ready(function() {
            
            $("button").on(
              "click", function() {
                var 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:
Before:

After:


My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!