Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <div>
  2. <p>Good text</p>
  3. <blockquote>Good text</blockquote>
  4. Problematic text <strong>like this</strong> one.
  5. <p>Good text</p>
  6. </div>
  7.  
  8. p {
  9. max-width: 300px;
  10. margin: 0 auto;
  11. padding: 10px;
  12. }
  13.  
  14. jQuery("div").contents().filter(function() { return this.nodeType === 3; }).wrap('<p>');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement