I've just come up against this in chrome and the only thing that worked was removing and replacing the iframe. Example:
$(".iframe_wrapper").find("iframe").remove();
var iframe = $('');
$.find(".iframe_wrapper").append(iframe);
Pretty simple, not covered in the other answers.