Skip to content

Instantly share code, notes, and snippets.

@seanbuscay
Created February 12, 2014 22:42
Show Gist options
  • Save seanbuscay/2bd29fdb37eeb628561b to your computer and use it in GitHub Desktop.
Save seanbuscay/2bd29fdb37eeb628561b to your computer and use it in GitHub Desktop.
Do something on window resize
$(document).ready(function() {
$(window).resize(function() {
var bodyheight = $(window).height();
$("#sidebar").height(bodyheight);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment