/ Published in: JavaScript
URL: http://benalman.com/projects/jquery-unwrap-plugin/
thanks to the original author
Expand |
Embed | Plain Text
$.fn.unwrap = function() { this.parent(':not(body)') .each(function(){ $(this).replaceWith( this.childNodes ); }); return this; };
You need to login to post a comment.
