Skip to content

Instantly share code, notes, and snippets.

@ruslansavenok
Created October 16, 2014 10:22
Show Gist options
  • Save ruslansavenok/1b4ecbd09e1121d4b10d to your computer and use it in GitHub Desktop.
Save ruslansavenok/1b4ecbd09e1121d4b10d to your computer and use it in GitHub Desktop.
$(document).ready(function () {
$debug = $('<div class="debug"></div>').css({
position: 'fixed',
bottom: 0,
right: 0,
color: "#fff",
background: "#000",
padding: "5px",
"z-index": 99999
}).appendTo('body');
$(window).resize(function () {
$debug.text($('body').width() + "x" + $('body').height());
}).resize();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment