Is there a way to remove text that is not wrapped in any tag using jQuery
<p>This is some text</p>
This is "unwrapped" text //to be removed
<span>some more text</span>
Thank you for your help
|
Is there a way to remove text that is not wrapped in any tag using jQuery
Thank you for your help |
|||||||
|
|
Using the answer from this question:
|
|||||||||
|
|
First, you can wrap them with dummy spans:
Now you can remove them easily:
|
|||
|
|
|
Wrapping it in a DOM element would mean jQuery can find it: eg:
or just:
|
|||
|
|
|
fwiw..
via CSS:
|
|||
|
|
It's amazing but at the same time the next code don't work
and the code from the first post works
It's important to remeber! jQuery 1.8.3. And first of all I remember that innerHTML manipulation works more and more faster than this approach! |
|||
|
|