Created
March 2, 2022 20:22
-
-
Save joychetry/934a18569b8db701565032831c05a6c4 to your computer and use it in GitHub Desktop.
jQuery Move Div on Mobile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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