html css set height to window code example
Example 1: javascript get image width and height
var img = new Image();
img.onload = function() {
alert(this.width + 'x' + this.height);
}
img.src = 'http://www.google.com/intl/en_ALL/images/logo.gif';
Example 2: css window height
body, html {
height: 100%;
}
#right {
height: 100%;
}