Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

JQuery hasData() method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

This hasData() method in JQuery is used to determine whether an element has any jQuery data associated with it. This data may be text, event associated with element. There are two examples discussed below:

Syntax:

jQuery.hasData(element)

Arguments:

  • element: This parameter is a DOM element which is to be checked for data.
  • Example: There is no data associated with <div> so the method returns false.




    <!DOCTYPE HTML> 
    <html>  
    <head
        <title
          JQuery | hasData() method
        </title>      
        </script
    </head>   
    <body style="text-align:center;"
        <h1 style="color:green;">  
            GeeksForGeeks  
        </h1
        <p id="GFG_UP"
        </p>
        <div> This is DIV
        </div>
        <br>
        <button onclick="Geeks()"
            Click here 
        </button>       
        <p id="GFG_DOWN"
        </p>       
        <script
            var el_up = document.getElementById("GFG_UP");
            var el_down = document.getElementById("GFG_DOWN");
            var $div = jQuery( "div" ), div = $div[ 0 ];
            el_up.innerHTML = "JQuery | hasData() method";
            function Geeks() { 
                el_down.innerHTML = jQuery.hasData(div);
            
        </script
    </body>   
    </html

    
    

  • Output:
  • Example: There is a event associated with <div> so the method returns true.




    <!DOCTYPE HTML> 
    <html>  
    <head
        <title
          JQuery | hasData() method
        </title>      
    </script
    </head>   
    <body style="text-align:center;"
        <h1 style="color:green;">  
            GeeksForGeeks  
        </h1
        <p id="GFG_UP"
        </p>
        <div> This is DIV
        </div>
        <br>
        <button onclick="Geeks()"
            Click here 
        </button>       
        <p id="GFG_DOWN"
        </p>       
        <script
            var el_up = document.getElementById("GFG_UP");
            var el_down = document.getElementById("GFG_DOWN");
            var $div = jQuery( "div" ), div = $div[ 0 ];
            el_up.innerHTML = "JQuery | hasData() method";
            $div.on( "click", function() {} );
            function Geeks() { 
                el_down.innerHTML = jQuery.hasData(div);
            
        </script
    </body>   
    </html

    
    

  • Output:

My Personal Notes arrow_drop_up
Last Updated : 16 Jul, 2020
Like Article
Save Article
Similar Reads
Related Tutorials