Web Hosting Talk







View Full Version : Can't make pop-up in new window instread of tab in IE.


Mechphisto
03-16-2009, 12:55 PM
I'm trying to make it so that a clicked link will open a Flash movie into its own set size window. But in IE8 (and IE8 emulating IE7) it only opens up in a new tab, with the movie filling the entire window's size!
Here's the link I'm trying:
<Script Language="JavaScript">
function load() {
var load = window.open('http://www.mydomain.com/flash/
twitter_tutorial.swf','_blank','scrollbars=no,menubar=no,fullscreen=0,heigh t=400,width=550,resizable=no,toolbar=no,location=no,status=no,zoominherit=0 ');
}
// -->
</Script>
Open Flash tutorial in a separate window by <a href="javascript:load
()">clicking here</a>.
It works fine in Firefox and Google Chrome. But obviously, I need it to work in IE!
Any advice?
Thanks!
Liam

zoobie
03-18-2009, 02:41 PM
you've got a space in heigh t=400
not sure that '_blank' goes in there, either...thats for an "a" tag
regardless, the folks at www.codingforums.com will fix you up