i have a set of hyperlinks with href = javascript:method(‘category1’) and likewise category2 category3 …
I want to select hyperlink with href containing category1 so i have written
jQuery(a[href*=’category1′]) but dont know why it also selects hyperlinks with category10 category11 category12 … also
I understand that category1 is common in all of them but ‘category1’ should’nt be do i need to put ‘ with escape charaters.
Just do
=if you only want category1, and define the entire href.Also, you’re missing the outer quotation marks.
EDIT:
Alternatively, you could use the ‘attribute ends with’ selector if you want to shorten it up a bit.