Created
October 16, 2014 10:22
-
-
Save ruslansavenok/1b4ecbd09e1121d4b10d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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