Skip to content

Instantly share code, notes, and snippets.

@surjithctly
Created February 11, 2014 10:59
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 surjithctly/8932897 to your computer and use it in GitHub Desktop.
Save surjithctly/8932897 to your computer and use it in GitHub Desktop.
Window height for div even on resize
$(document).ready(function(){
function e(){
var e=$(window).height();
$(".banner").css("height",e)
}
e(),$(window).resize(e)})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment