New Javascript window for non resizing video in IE

I have the following code for a javascript popup in which a YouTube video is embedded.

<script language="JavaScript"> function openAndroid22Window()
 {
   NewWindow=window.open("http://v4m.mobi/php/video_demo_frame.php?
   vid=http://www.youtube.com/embed/1-VsX8qMVFo?rel=0&width=640&height=510",   
   "awindow","width=668,height=548,scrollbars=yes");
 }
</script>
<li><a href="javascript:openAndroid22Window()">Installation on Android</a></li>

The problem is that in all browsers except IE, the window can be resized. Why doesn't it resize / maximize in IE?

+5
source share
1 answer

Add resizable=yes

function openAndroid22Window()
{
       NewWindow=window.open("http://google.com", "awindow", "width=668,height=548,scrollbars=yes, resizable=yes");
}

Tested in IE, example .

+9
source

All Articles