Skip to content

Instantly share code, notes, and snippets.

@joychetry
Created March 2, 2022 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joychetry/934a18569b8db701565032831c05a6c4 to your computer and use it in GitHub Desktop.
Save joychetry/934a18569b8db701565032831c05a6c4 to your computer and use it in GitHub Desktop.
jQuery Move Div on Mobile
(function($) {
var stickWidth = 768;
var win = $(window);
if (win.width() < stickWidth) {
$('#page-sidebar').insertAfter('#bottom-section');
}
win.resize(function () {
if (win.width() < stickWidth) {
$('#page-sidebar').insertAfter('#bottom-section');
}
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment