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(); } },
I review, the standard-setting conference of the year, New Adventures in Web Design 2011.
I have been using XAMPP as a lazy way of getting a PHP/MySQL/Apache environment set up for local development, and was recently looking into server performance. I wanted to tweak performance on a site-specific level, because some of the tweaks need to be customised on a site, not server, level. The problem I encountered was [...]