$('p *',$('iframe').contents()).each(function(){
$('*',this).contents().add($(this).contents()).filter(function(){
return this.nodeType==3;
}).each(function(){
var html=this.text();
html.replace(/subject/g,'<span style=backgroundcolor:yellow>subject<\span/>');
$(this).replaceWith(html);
})
});