Skip to content

Instantly share code, notes, and snippets.

@phamquocbuu
Created October 5, 2013 01:38
Show Gist options
  • Save phamquocbuu/6835555 to your computer and use it in GitHub Desktop.
Save phamquocbuu/6835555 to your computer and use it in GitHub Desktop.
JavaScript Set fullscreen
function setFullScreen(elm) {
w = $(document).width();
h = $(document).height();
$(elm).css({
"height" : h,
"width" : w
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment