Advertisement
aacable

launch Internet Explorer 10 in IE-9 mode via shortcut html f

Nov 27th, 2013
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.04 KB | None | 0 0
  1. ### Alternate way to launch Internet Explorer 10 in IE-9 mode via shortcut html file as below
  2. ### Syed Jahanzaib / aacable @ hotmail . com
  3. ### http://aacable.wordpress.com
  4.  
  5. <html>
  6. <meta http-equiv="X-UA-Compatible" content="IE=9">
  7.     <head>
  8.         <style type="text/css">
  9.             body
  10.             {
  11.                 margin:   0;
  12.                 overflow: hidden;
  13.             }
  14.  
  15.             #iframe1
  16.             {
  17.                 height:   100%;
  18.                 left:     0px;
  19.                 position: absolute;
  20.                 top:      0px;
  21.                 width:    100%;
  22.             }
  23.         </style>
  24.     </head>
  25.  
  26.     <body>
  27.         <iframe id="iframe1" src="about:blank" frameborder="0"></iframe>
  28.     </body>
  29. </html>
  30.  
  31. ## Now double click this file and IE10 will be launch in IE9 mode. Also you can point the cctv public url link int < #  iframe id= section. for example.
  32.  
  33.  
  34.        <iframe id="iframe1" src="http://PUBLIC_CCTV_URL_OR_IP:PORT" frameborder="0"></iframe>
  35.  
  36.  
  37. # You can modify it as per your requirements.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement