$('.wpProQuiz_content .wpProQuiz_cloze input[type="text"]').keyup(function(){ $this = $(this).val().toLowerCase(); $('.randomWord').each(function(){ if( $this.indexOf($(this).text()) >= 0 ){ $(this).css('text-decoration', 'line-through'); } else { $(this).css('text-decoration', 'none'); } }); });