Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Use jQuery hasAttribute Method to Check for Element Attributes



Use jQuery hasAttribute() method to see if there is an attribute for an element.

Example

You can try to run the following code to learn how to use hasAttribute() method:

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(document).ready(function(){
           $('button').on('click', function() {

             if (this.hasAttribute("style")) {
               alert('True')
             } else {
               alert('False')
             }
             
          })
         });
      </script>
   </head>
   <body>
       Check for attribute in the button element<br>
      <button class='button' style='background-color:blue;'>
      Button
      </button>
      <button class='button'>
      Button 2
      </button>
   </body>
</html>
Updated on: 2019-12-18T10:07:36+05:30

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements