Skip to content

Instantly share code, notes, and snippets.

@jasonglisson
Last active September 14, 2017 12:39
Show Gist options
  • Save jasonglisson/269704a60a8bf786c97b to your computer and use it in GitHub Desktop.
Save jasonglisson/269704a60a8bf786c97b to your computer and use it in GitHub Desktop.
Target text without container
$('.mailchimp-signup-subscribe-form div:first-of-type').contents().filter(function() {
return this.nodeType === 3;
}).wrap('<p class="description"></p>').end().filter( "br" ).remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment