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?
source
share