Skip to content

Instantly share code, notes, and snippets.

View stevenmg's full-sized avatar

Steven Glick stevenmg

View GitHub Profile
@stevenmg
stevenmg / jquery-parent-to-animate.js
Last active January 6, 2018 06:42 — forked from MadLittleMods/jquery-parent-to-animate.js
Transition/Animate move to new parent - jQuery plugin
// Usage:
// $('.box').parentToAnimate($('.new-parent'), 200);
// $('.box').parentToAnimate($('.new-parent'), 'slow');
// $('.box').parentToAnimate('.new-parent', 'slow');
jQuery.fn.extend({
// Modified and Updated by MLM
// Origin: Davy8 (http://stackoverflow.com/a/5212193/796832)
parentToAnimate: function(newParent, duration) {
duration = duration || 'slow';