a have an asp repeater that is repeating a links on a page with different urls. I want to hide any links (using jquery) that contain the word 'text' in their href. How can i do this?
if($(".fsproductsStcokistButton:contains('text')"))
{
$(this).css("display", "none");
}