News
JQuery containsExactly Selector
//implements containsExactly Selector which performs an exact match instead of the original contains selector$.expr[':'].containsExactly = function(obj, index, meta, stack){
return ($(obj).text()==(meta[3]));
};
usage: $("#div:containsExactly('TextToFind'))...