<div id="divInitial"></div>
<div id="divResize"></div>
$("#divInitial").text("Initial Window width: " + $(window).width() + ", height: " + $(window).height() + ".");
//Event to handle resizing
$(window).resize(function () {
var winwidth = $(window).width();
var width = winwidth+"px"
var winheight = $(window).height();
var height = winheight +"px"
//alert("width:"+ width + " and height:"+ height);
$("#divResize").text("Window width: " + width + ", height: " + height + ".");
});
No comments:
Post a Comment