-
Click a Heading to reveal sub-content
HTML is a markup language that, most essentially, sets the structure of a document. That structure is meaningful, and it’s often abused when web developers do a sloppy job. It’s important for accessibility, readability, and in giving a clear understanding of what is what. With that in mind, I set out to create a page full…
-
Modal Windows – IE8 problems with iframe’s z-index
Recently, working with a site that uses modal windows as part of the visitor’s process flow, I ran into a bug in Internet Explorer 8 and below where an iframe (containing an embedded video in this case) was displayed above all modal windows, so the users couldn’t see or click on the modal windows. Setting position:absolute didn’t…
-
AJAX loading JS, CSS, and HTML
Having problems loading scripts and CSS when loading content with AJAX? The solution is simple: Don’t have the JS or CSS in the pages you load up with JavaScript. Instead, when you load up the HTML with your AJAX call, also call the scripts and CSS you need separately at the same time. After including…