Skip to content

Instantly share code, notes, and snippets.

@thatandyrose
Created September 6, 2013 00:03
Show Gist options
  • Save thatandyrose/6457876 to your computer and use it in GitHub Desktop.
Save thatandyrose/6457876 to your computer and use it in GitHub Desktop.
js snippet to keep element the size of the viewable port. Note, this require a valid DOC type in the document.
$(document).ready(function(){
set_size()
});
$(window).resize(function(){
set_size();
});
function set_size(){
var h = $(window).height();
var w = $(window).width();
var head = $('#header');
head.height(h);
head.width(w);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment