$('td').each(function () { var $this = $(this), text = $this.text(); if (text === 'yep') { $this.addClass('yep'); } else if (text === 'nope') { $this.addClass('nope'); } });