I want to catch every a tag which href attribute contain word youtube.
I need to use jquery.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
For more selectors, see the Selectors portion of the jQuery API. |
|||
|
||||
|
|
|
You can always use "filter":
You could use a fancier selector, but this is simple and clear and possibly faster, as the library doesn't need to do the work of figuring out what your selector means. It's a matter of taste mostly. |
|||||||||||||
|
|
pretty simple...
http://api.jquery.com/attribute-contains-selector/ http://api.jquery.com/category/selectors/ |
|||
|
|
|
These other answers are great; but in case you're interested it's not that difficult to do a pure JS (no jQuery) alternative
it'd be a good idea to make sure to strip out "www." and "https://" as well. |
|||||||
|