I am using the following script to find all h1 elements, within a parent ID container that will fit a curtain criteria...
$(\'#cpcompheader h1\').html(\"&nbs
You could try finding all the h1 tags and then checking if they contain a certain value.
$('#yourParent h1').each(function(){ if($(this).html() == " "){ // magic } });