1
2
3
4
5
open menage
<html> <head> <title> this is the menage.html file. </title> <link rel="stylesheet" type="text/css" href="menage.css" /> <script> <script src="http://code.jquery.com/jquery-latest.js"> </script> </head> <body> <h3> this is an h3 header. </h3> <p> this is a paragraph. </p> <script type="text/javascript"> onload=function() { var wiw=window.innerWidth; var wih=window.innerHeight; var wow=window.outerWidth; var woh=window.outerHeight; alert("wiw=" + wiw + " and wih=" + wih + " and wow=" + wow + " and woh=" + woh + ", and that is all..."); } //--> </script> </body> </html>
css file goes here...
javascript file goes here...