Is there a way to remove this
<p> </p>
using jQuery?
|
|
Try:
What that does is it finds all the |
|||||||||||||||||
|
|
As Greg mentions above, testing the trimmed .text() will remove paragraphs w/ no text, but do have a self-contained element like the
|
|||
|
|
|
Probably same answer as here, try to do this on code behind. With jquery i'll use this:
Also you could use .empty(), that will remove all child nodes from the set of matched elements. |
|||
|
|
|
This should handle any element with no children of any type (including unwrapped text nodes).
|
|||
|
This could be a better solution for CMSs. Some rich text editors add
|
|||
|
|
I used this to remove empty paragraph that contains not element such as IMG, Input, Select, etc. |
||||
|
|
|
If you are trying to simply remove all empty P elements, or P's with only a single space, then you could do this:
This iterates through all of the P's on your page and if they match a certain criteria (they are empty or only have a whitespace) then it removes them from the DOM. Also, by assigning our html content once to a local variable, it helps the script run faster. To look for non-breaking spaces I simply compare the contents to a string created from ASCII character code 255 (which is a non-breaking space). jQuery's map() function can be great when a simple filter, or attribute comparison will not suffice. You can read more about it here.... http://api.jquery.com/map/ |
||||
|
|
|
give it an id (to get the selector).
|
|||||
|