- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to use jQuery hasAttribute() method to see if there is an attribute on an element?
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>
- Related Articles
- How to use attr() method in jQuery to get the value of an attribute?
- How to find an element based on a data-attribute value using jQuery
- How to find an element based on a data-attribute value in jQuery?
- How to change the src attribute of an img element in JavaScript / jQuery?
- How to use protractor to check if an element is visible?
- How to get an attribute value in jQuery?
- How to add class to an element without addClass() method in jQuery?
- How to append an element before an element using jQuery?
- How to append an element after an element using jQuery?
- How to check if an element has a class in jQuery?
- How to clone an element using jQuery?
- How to verify an attribute is present in an element using Selenium WebDriver?
- How can I select an element by its ID attribute using jQuery?
- How to use *= operator in jQuery attribute selector?
- How to use input readonly attribute in jQuery?

Advertisements