Skip to content

Instantly share code, notes, and snippets.

@caralgar
Created March 31, 2016 10:04
Show Gist options
  • Save caralgar/b629996c8c7da9f1f40829e1477aa03a to your computer and use it in GitHub Desktop.
Save caralgar/b629996c8c7da9f1f40829e1477aa03a to your computer and use it in GitHub Desktop.
Swap items order on HTML for responsive
$(window).resize(function() {
if ($(window).width() < 768) {
$('#content').insertBefore('#sidebar');
}
else
$('#sidebar').insertBefore('#content');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment