Skip to content

Instantly share code, notes, and snippets.

@OlofFredriksson
Forked from cdaven/responsive.js
Created September 2, 2013 08:29
Show Gist options
  • Save OlofFredriksson/6410529 to your computer and use it in GitHub Desktop.
Save OlofFredriksson/6410529 to your computer and use it in GitHub Desktop.
var reflowDocument = function () {
var viewportWidth = jQuery(window).width();
// do stuff here
};
jQuery(document).ready(function($) {
var reflowTimer = null;
$(window).on('resize', function () {
clearTimeout(reflowTimer);
reflowTimer = setTimeout(reflowDocument, 100);
});
// First reflow
reflowDocument();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment