
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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:
<!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>
Advertisements