JQuery, selecting what does NOT contains something JQuery, selecting what does NOT contains something jquery jquery

JQuery, selecting what does NOT contains something


Use the :not() selector that is part of the jquery framework. Something like $('tr:not(:contains("pc"))') should do the trick.


$('tr').not(':contains("pc")')


$('tr:not(:contains("pc"))') // this can be used