- 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 do we use jQuery Attribute selector with a period?
jQuery Attribute selector is used to select elements with the specified attribute and value. You can easily use it with a period (.) or a hash (#).
Example
You can try to run the following code to learn how to use jQuery selector with a period:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $( "div[myattr*='.']" ).css("background-color", "yellow"); }); </script> </head> <body> <div id="sub1" myattr="java.subject">Java</div> <div id="sub2" myattr=".htmlsubject">HTML</div> <div id="sub3" myattr="rubysubject">Ruby</div> </body> </html>
- Related Articles
- How do we use # in jQuery Attribute Selector?
- How do we use .not() with jQuery selector?
- How do we use jQuery selector eq:()?
- How do we use wildcard or regular expressions with a jQuery selector?
- How to use *= operator in jQuery attribute selector?
- How to combine a class selector and an attribute selector with jQuery?
- jQuery [attribute!=value] Selector
- How to write a jQuery selector to find links with # in href attribute?
- How to make jQuery attribute selector case insensitive?
- How to pass a variable into a jQuery attribute-contains selector?
- How to use universal (*) selector in jQuery?
- Why do we use jQuery over JavaScript?
- Why do we use JSON.stringify() method in jQuery?
- Where do we use $.extend() method in jQuery?
- Why do we use the novalidate attribute in HTML?

Advertisements