It would be helpful if you could provide HTML. I would create a fiddle, but you can try the solution below
Iterate over tr in the table and find tr having
$("table.ms-formtable > tbody > tr").each(function(){ var text = $(this).find("td:first").find("nobr").text(); if(text === 'Question') { $(this).remove(); } });
http://jsfiddle.net/9tw2kfek/
source share