this is my jquery
$('#hijue').change(function () {
if($(this).prop(checked) == true) {
$('#puta').hide();
}
else {
$('#puta').show();
}
});
and this is my html
<input type="checkbox" name="hijue" id="hijue" unchecked>
<div id="puta"></div>
This question has been posted by others before but I'm still stuck in retrieving the checkbox. Anybody please help