Milux

Untitled

Jan 26th, 2013
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. var el = document.documentElement
  2. , rfs = // for newer Webkit and Firefox
  3. el.requestFullScreen
  4. || el.webkitRequestFullScreen
  5. || el.mozRequestFullScreen
  6. || el.msRequestFullScreen
  7. ;
  8. if(typeof rfs!="undefined" && rfs){
  9. rfs.call(el);
  10. } else if(typeof window.ActiveXObject!="undefined"){
  11. // for Internet Explorer
  12. var wscript = new ActiveXObject("WScript.Shell");
  13. if (wscript!=null) {
  14. wscript.SendKeys("{F11}");
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment