How can I detect when a details element is opened or closed in Javascript? Other than attaching a listener to the click function and checking if the open attribute is set or not.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You can do something like this:

<details id="element">
   <p>Details</p>
</details>

<script>
   var isOpen = ($("#element").attr("open") == "open");

   alert ("Open = " + isOpen);
</script>
link|improve this answer
I am looking for an event that fires when the state changes from opened to closed or vice-versa. – rolisz Sep 9 '11 at 15:10
1  
Is there a reason you can't use the onclick event? You can always try binding on the DOMAttrModified event. In either case, the details element is so new and not supported by many browsers so it's hard to say how it'll end up working down the road. – Garrett Vlieger Sep 9 '11 at 15:26
Well, if I'm using the onclick event than I might as well be using two div's instead of details and summary. It's only two extra lines of jQuery and I don't to worry about cross-browser compatibility. I didn't know about the DOMAttrModified, but I don't think it's working in Chrome, and the detail element is not working anywhere else except Chrome :))) – rolisz Sep 9 '11 at 18:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.