Below script prints the window page by simple javascript function.
See below :
Related Articles
PHP Radio Button Example With Mysql DB
Simple PHP Radio button enable and disable textarea textbox example in php using Mysql
How to handle the F11 key without showing Full Screen mode using Javascript
You can handle the F11 key using Javascript function, check the below javascript function.
Open a Url onload of a Website or Pagee
You can able to load a webpage while accessing a particular Website using Javascript, see below for code. <script> function openWindow() { window.open(‘http://www.google.com‘,’a’,’height=300,width=600′); } </script> <body onload=”openWindow();”> </body>