- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 find an element based on a data-attribute value in jQuery?
To find an element based on a data-attribute value using jQuery is quite easy.
Example
You can try to run the following code to learn how to find an element based on a data-attribute value using jQuery:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $('[data-slide="2"]').addClass('demo'); }); </script> <style> .demo { font-size: 200%; color: green; } </style> </head> <body> <p data-slide="1">One</p> <p data-slide="2">Two</p> <p data-slide="3">Three</p> </body> </html>
- Related Articles
- How to find an element based on a data-attribute value using jQuery
- How to get an attribute value in jQuery?
- How to find the mean based on single group value in an R data frame?
- How to use jQuery hasAttribute() method to see if there is an attribute on an element?
- How to get value of data attribute and use it in jQuery?
- How to change the value of an attribute using jQuery?
- How to set new value for an attribute using jQuery?
- How to get row index based on a value of an R data frame column?
- How to extract a particular value based on index from an R data frame column?
- How to find the position of a data frame’s column value based on a column value of another data frame in R?
- How to get an attribute value of an element in Selenium Webdriver?
- How to find the sum based on a categorical variable in an R data frame?
- How to extract the attribute value of an element in Selenium?
- How to remove rows containing missing value based on a particular column in an R data frame?
- How to extract a data frame’s column value based on a column value of another data frame in R?

Advertisements