Create new window for video, not resizable - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Video

Description

Create new window for video, not resizable

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials