I simply have a table with a bunch of ✔ X and a few other symbols, how can I change the class of a cell based on it's contents?
jQuery example:
$(function(){$("td:has('✔')").addClass("tick"); });
$(function(){$("td:has('X')").addClass("cross"); });