It's probably due to the iframe said script writes. I don't know if an invisible iframe would work, though, if the problem was with rendering. Try:Code:<iframe src="http://www.google.com/" style="width:0;height:0;border-style:none;"></iframe>
Printable View
It's probably due to the iframe said script writes. I don't know if an invisible iframe would work, though, if the problem was with rendering. Try:Code:<iframe src="http://www.google.com/" style="width:0;height:0;border-style:none;"></iframe>
If that works, try the less intensive:Quote:
Originally Posted by Twey
You can even give it dimensions and set its visibility:hidden; in the style, if need be:HTML Code:<iframe src="" style="width:0;height:0;border-style:none;"></iframe>
HTML Code:<iframe src="" style="width:10px;height:300px;visibility:hidden;"></iframe>
Twey and jscheuer1 - you guys are brilliant!
All your fixes work! The bug disappeared!
Many many thanks for your help and advice! :)
(The "Twey-jscheuer1 hack for Safari"!)
If they all work, the preferred one is:Code:<iframe src="" style="width:0;height:0;border-style:none;display:none;"></iframe>
Actually that does not work. Using that, the bug reappears. However, this works:Quote:
Originally Posted by Twey
..which is good enough for me! Thanks again!Code:<iframe src="" style="width:1px;height:1px;visibility:hidden;"></iframe>
Interesting. Does it work if you use a div instead of an iframe?
No. It seems to need the "src=" part.Quote:
Originally Posted by Twey
OK, I get it now.