I have a left navigation bar in my iFrame with two elements switching between two pages. Sometimes there is a white flash, sometimes it is not.
Some of the methods I've tried so far are:
<iframe style="visibility:hidden;" onload="this.style.visibility = 'visible';">
Not a trick.
jQuery('#jobs-frame').load(function(){ $(this).show(); }); jQuery('#primary a').click(function(){
And did not do the trick. Any other method I tried turned out to be deprecated. I was puzzled that these two solutions have a lot of comments / reviews that say they work, but in Chrome - the only browser I have tested so far - I still have this problem.
source share