
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
How to use jQuery selector for the elements with an ID that ends with a given string?
To get the elements with an ID that ends with a given string, use attribute selector with $ character.
Example
You can try to run the following code to learn how to to use jQuery selector for the elements with an ID that ends with a given string. Let’s say we are going for elements with an ID ending with the string “new1”.
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("[id$=new]").css("background-color", "yellow"); }); </script> </head> <body> <div id="id1new" myattr="javasubject">Java</div> <div id="myid1" myattr="htmlsubject">HTML</div> <div id="id2new" myattr="rubysubject">Ruby</div> </body> </html>
- Related Questions & Answers
- jQuery #id Selector
- How to combine a class selector and an attribute selector with jQuery?
- How do we use .not() with jQuery selector?
- How do we use jQuery Attribute selector with a period?
- Check if a string ends with given word in PHP
- How do we use wildcard or regular expressions with a jQuery selector?
- jQuery :has() Selector with example
- How to use universal (*) selector in jQuery?
- Find if a string starts and ends with another given string in C++
- Is it possible to use $(this) and universal selector (*) with jQuery?
- How to set new id attribute with jQuery?
- How to determine if an input string ends with a specified suffix in JSP?
- How to use *= operator in jQuery attribute selector?
- How to use jQuery.closest() method with class selector?
- How do we use jQuery selector eq:()?
Advertisements