I have the following code:
<div id="users">
<p><input type='checkbox' value= "1" checked>one</p>
<p><input type='checkbox' value= "2" checked>two</p>
<p><input type='checkbox' value= "3" checked>three</p>
</div>
I need to remove the paragraph within my <div id="users"> that contains checkbox value="2" using jQuery.
I know the values checkbox value=2 and <div id="users"> and also know its inside<p>.