Skip to content

Instantly share code, notes, and snippets.

@tobyturnbullknokal
Created June 27, 2016 04:13
Show Gist options
  • Save tobyturnbullknokal/1b7b17e55c476e1c6e73216b3dd8c160 to your computer and use it in GitHub Desktop.
Save tobyturnbullknokal/1b7b17e55c476e1c6e73216b3dd8c160 to your computer and use it in GitHub Desktop.
$(window).on('resize', function () {
if ($(window).width() <= 700) {
$('.pricing-slides').insertAfter('.pricing-premium');
console.log("hello");
} else if ($(window).width() > 700) {
$('.pricing-slides').insertBefore('.pricing-premium');
console.log("bye");
};
}).trigger('resize');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment