- 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 pass a variable into a jQuery attribute-contains selector?
Yes, it is possible to pass a variable into a jQuery attribute-contains selector. The [attribute*=value] selector is used to select each element with a specific attribute and a value containing a string.
Example
You can try to run the following code to learn how to pass a variable into a jQuery attribute-contains selector:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(function() { var testString = "vp-485858383"; $('[data-vp*="id: ' + testString + '"]').css('color', 'blue'); }); </script> </head> <body> <div data-vp='{ id: vp-485858383, customTwo: "test" }'> Hello World </div> </body> </html>
- Related Articles
- How to combine a class selector and an attribute selector with jQuery?
- jQuery :contains() Selector
- jQuery [attribute!=value] Selector
- How to make jQuery attribute selector case insensitive?
- How to use *= operator in jQuery attribute selector?
- How do we use jQuery Attribute selector with a period?
- How to write a jQuery selector to find links with # in href attribute?
- How do we use # in jQuery Attribute Selector?
- How to put url into a variable when button is clicked - jQuery?
- How do I pass a variable to a MySQL script?
- How to get a DOM Element from a jQuery Selector?
- How to pass a variable to an exception in Python?
- How to pass a variable from Activity to Fragment in Android?
- How to pass a date variable in sql query in a JSP?
- How to pass a jQuery event as a parameter in a method?

Advertisements