Skip to content

Instantly share code, notes, and snippets.

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