Is there a way to remove all anchor title attributes in all links within an iframe so that when you hover over them you don't get the title?
I know I can do something like the following but for some reason it isn't working.
$("iframe").load(function() {
$("iframe").contents().find("a").each(function(index) {
$(this).attr('title','');
});
});