Skip to content

Instantly share code, notes, and snippets.

@lzcabrera
Created January 1, 2013 00:51
Show Gist options
  • Save lzcabrera/4424289 to your computer and use it in GitHub Desktop.
Save lzcabrera/4424289 to your computer and use it in GitHub Desktop.
javascript to enhance desktop experience on resize
$(window).load(function() {
var $win = $(window);
function update () {
if($win.width > 768){
}else{
}
};
update(); // call when the DOM is ready
// Call when the viewport resizes:
$win.on('resize', update);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment