Just a quick post, here’s some quick JS I used as a fallback for HTML5′s <Details> tag. html5_details: function () { if (‘open’ in document.createElement(‘details’)) { //native support } else { $(“details summary”).click(function () { $(this).siblings(“p”).slideToggle(“fast”); }).siblings(“p”).hide(); } },