Javascript examples for DOM HTML Element:Video
Create new window for video, not resizable
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <script language="JavaScript"> function openAndroid22Window() { NewWindow=window.open("http://google.com", "awindow","width=668,height=548,scrollbars=yes, resizable=yes"); } </script> <ul> <li> <a href="javascript:openAndroid22Window()">Installation on Android</a> </li> </ul> </body>/*from w w w . j av a 2 s .com*/ </html>