I would like to remove an item from the checkbox list using its value
<input type="checkbox" name="chk" id="chk0" value ="Chicken">
$("#chk0:checkbox[value='Chicken']").parent().remove();
I am trying to remove the item but it is not working. I need some assistance.
value="Chicken"is much easier to read thanvalue = "Chicken".