Skip to content

Instantly share code, notes, and snippets.

@pitch-gist
Created July 9, 2012 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pitch-gist/3073581 to your computer and use it in GitHub Desktop.
Save pitch-gist/3073581 to your computer and use it in GitHub Desktop.
JavaScript: Display Screen Width
// write the current screen width to our screen
$("#widget span").html($(window).width());
$(window).resize(function() {
$("#widget span").html($(window).width());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment