3

I have a div, where in i do have a ul, where the ul has some li.

i just want to find some text and remove the li from the ul.

suppose eg:

<div id="div1">
  <ul>
    <li>Hello</li> <!--i need to remove this.-->
  </ul>
</div>
nimi
  • 5,359
  • 16
  • 58
  • 90
  • Yeah i need to remove the entire li which contains the text Hello – nimi Dec 14 '09 at 12:16