I have an unsorted list with inputs. I am wondering how I can remove an input from the list provided specific id of the input. Here is the sample list:
<ul class="list>
<li class="item"><input class="child" id"1" type"checkbox" name ="checkbox">"test 1"</li>
<li class="item"><input class="child" id"2" type"checkbox" name ="checkbox">"test 2"</li>
<li class="item"><input class="child" id"3" type"checkbox" name ="checkbox">"test 3"</li>
</ul>
This is not the same as the proposed solution as I have inputs involved inside the li and not just li directly
by Id?](http://stackoverflow.com/questions/15624690/how-do-you-remove-and-li-from-a-ul-by-id)