Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
72
rated 0 times [  73] [ 1]  / answers: 1 / hits: 22730  / 11 Years ago, mon, july 1, 2013, 12:00:00

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


More From » javascript

 Answers
62

http://jsfiddle.net/CUqmn/4/



function dismiss(){
document.getElementById('dismiss').parentNode.style.display='none';
};


BTW, as jsfiddle wrap javascript code in loader function, use no wrap in left select box to get it work on jsfiddle.


[#77288] Saturday, June 29, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
analiseb

Total Points: 252
Total Questions: 96
Total Answers: 106

Location: Singapore
Member since Sat, Jul 25, 2020
4 Years ago
analiseb questions
;