/ Published in: jQuery
Expand |
Embed | Plain Text
$(function(){ $(window).load(function(){ // On load $('#div').css({'height':(($(window).height()))+'px'}); }); $(window).resize(function(){ // On resize $('#div').css({'height':(($(window).height()))+'px'}); }); });
You need to login to post a comment.
