The jQuery Attribute Contains Selector [name*="value"]
is used to select elements with a specific attribute
value containing a given substring value
.It is case sensitive.
[name*="value"]
selector Syntax$('[attribute*="value"]')
[name*="value"]
selector ExamplesFinds all elements with a title attribute that contains java
and hightlight them.
Try now