I have tried
$('a[title="*"]').find('contains("PDF")').css({'background':'red'});
Which I know isn't what I want as its clearly broken.
Sorry to clarify the Im looking for a word occuring in the title
|
Try this,
For searching with ignore case
|
|||||||||||||
|
|
|||||
|
|
If its a specific title, it is simply:
|
|||||
|
<a>tag you are looking for? – Rocket Hazmat Jul 12 '12 at 15:49$("a[title]:contains('PDF')"). find() expects a selector expression. – Cupidvogel Jul 12 '12 at 15:54