Skip to content

Instantly share code, notes, and snippets.

@Symmetronic
Symmetronic / jquery-parent-to-animate.js
Last active January 6, 2018 07:02 — forked from stevenmg/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';