Avoid white background when iframe loads

Posted by Prince | 5:59:00 PM | | 0 comments »

Get Rid of  White Flash when iframe Loads:
                                                               To avoid white background while iframe loads, you can hides iframe until its fully loaded. You can use the following code snippets to hide iframe when its loading.
<iframe style="visibility:hidden;" onload="this.style.visibility = 'visible';" src="../iframe.html" > </iframe>

0 comments

Related Posts Plugin for WordPress, Blogger...