Skip to content

Instantly share code, notes, and snippets.

@riix
Created July 24, 2012 06:56
Show Gist options
  • Save riix/3168477 to your computer and use it in GitHub Desktop.
Save riix/3168477 to your computer and use it in GitHub Desktop.
Detecting and logging browser dimensions
var winWidth = $(window).width();
var winHeight = $(window).height();
$('#log').append('<div><h1>' + winWidth + 'x' + winHeight + '@' + window.orientation + '</h1></div>');
$(window).resize(function() {
var winWidth = $(window).width();
var winHeight = $(window).height();
$('#log').append('<div><h1>' + winWidth + 'x' + winHeight + '@' + window.orientation + '</h1></div>');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment