As of jQuery 1.4, you can unwrap an element with the unwrap() function. Prior to jQuery 1.4, you can unwrap a specific element by
$(this).parent().replaceWith(this);
For more details, you can take a look on the blog post by Ben Alman – jQuery unwrap: The opposite of .wrap, pretty much
Done =)
