Find and Hide element (jQuery)
<a href="#">Hide Me</a>
How do I find a link with text "hide" in it. I know how to find links by attributes but ca开发者_开发问答n't figure out how to find link by its text.
$('a:contains(Hide)')
Note that contains
is case sensitive.
$('a:contains(Hide)').click(function() { $(this).hide() });
$('a:contains("Hide")');
see this post
see jQuery docu
精彩评论