I use jQuery most of the time, so I am having a bit of trouble with the following (simple) javascript:
I want to dismiss(hide) the parent element of a p tag when clicking on it:
HTML:
<div class="parent">
<p id="dismiss" onclick="dismiss();">dismiss this box</p>
</div>
JS:
function dismiss(){
document.getElementById('dismiss').pDoc.parentNode.style.display='none';
};
Fiddle: http://jsfiddle.net/CUqmn/3/
But this is not working. What would be the correct code?
Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…