Home › Forums › CSS › How to use jQuery to parse all the classes with name/ID of? › Re: How to use jQuery to parse all the classes with name/ID of?
October 17, 2008 at 12:10 am
#50616
Member
to see if a span contains something you can check with a $(‘span:contains(the word you are looking for)’)
a simple example would be
$(document).ready(function() {
$(‘span:contains(the word you are looking for)’).do what you want from here(”);
});