Skip to content

Instantly share code, notes, and snippets.

@edinella
Created November 3, 2012 18:32
Show Gist options
  • Save edinella/4008209 to your computer and use it in GitHub Desktop.
Save edinella/4008209 to your computer and use it in GitHub Desktop.
Native fullscreen javascript api
addEventListener("click", function(){
var el = document.documentElement;
var rfs = el.requestFullScreen || el.webkitRequestFullScreen || el.mozRequestFullScreen;
rfs.call(el);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment