Is there a way to remove text that is not wrapped in any tag using jQuery
This is some text This is \"unwrapped\" text //to be removed &
This is some text
fwiw..
This is some text This is "unwrapped" text //to be removed some more text
via CSS:
.parent-element { font-size: 0px; } .parent-element p { font-size: 12px; } .parent-element span { font-size: 14px; }