Skip to content

Instantly share code, notes, and snippets.

@Aliciabcd
Created November 1, 2018 08:12
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 Aliciabcd/6f8e0be81cc7603dee39f8c3989d2092 to your computer and use it in GitHub Desktop.
Save Aliciabcd/6f8e0be81cc7603dee39f8c3989d2092 to your computer and use it in GitHub Desktop.
$(function () {
var w = $(window).width();
var h = $(window).height();
$("#show").html(w + ":" + h);
$(window).resize(function () {
var NowWidth = $(window).width();
var NowHeight = $(window).height();
$("#show").html(NowWidth + ":" + NowHeight);
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment