
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 Wildcard or Regular Expressions with jQuery Selector
Wildcard or regular expressions can also be used with jQuery selector for id of element.
Example
You can try to run the following code to use wildcard or regular expressions with jQuery selector:
<!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^=sub]").css("background-color", "green"); }); </script> </head> <body> <div id="sub1" myattr=".javasubject">Java</div> <div id="sub2" myattr=".htmlsubject">HTML</div> <div id="myid" myattr="rubysubject">Ruby</div> </body> </html>
Advertisements