CanaryNoir
3/20/2017 - 2:30 PM

wrap unwrap

wrap unwrap

var pTags = $( "p" );
$( "button" ).click(function() {
  if ( pTags.parent().is( "div" ) ) {
    pTags.unwrap();
  } else {
    pTags.wrap( "<div></div>" );
  }
});

$(".EventList > .EventListItem:not(:first-child) a").contents().unwrap();
// use .contents() to unwrap the target element