how to remove elements
how to remove elements
I need to remove certain elements from a given element up to, but not including, the parent close tag.
- <div id="parent">
- <div id="child1"></div>
- <div id="child2"></div>
- <div id="child3"></div>//delete from here all the way down until the parent end tag
- <div id="child4"></div>
- </div>
Please comment