If I want to set the src of iframe with these 3 value. I found:
javascript:doesn't work in IE10 (error is can't find the page). other mainstream browsers or IE9 is ok.javascript:falsewill show afalsestring in the iframe for IE10, others browsers or IE9 is ok.#works fine in all the browsers.
What is the difference between them? Which one is the best choice for cross-browser issues?
srcattribute at allsrcto an invalid URI?ext js 2.xin my website, but found theExt.SSL_SECURE_URLis initialized withjavascript:falsebyext js. this code caused a problem in the IE10. which is some window ofextshows a stringfalse(I found it is because of the codeiframe.src=javascript:false). so I changedExt.SSL_SECURE_URLvalue tojavascript:. thefalsestring would gone . but found another problem . it would show a error page "IE can't show this page". thanks.about:blankis the way to go. Using ajavascript:URI scheme to get a blank iframe is extremely weird, and someone should probably file an issue with any library that does that.