jquery - Select link based on partial href -


Is there a selector in jQuery that allows me to select all anchor tags containing a href Will href = "/ products / index? Page =" ?

Starting with my full href href = "/ products / index? Page = 2" , but all of them have begun in common.

You can use it, like:

  $ ( "A [href =" / products / index? Page = '] ")  

If you are curious, then it is available there.


Comments