Forget about CSS hacks as they should only be temporary solutions and will eventually break upon browser updates. You want robust CSS with minimal amount of HTTP calls for the best performance. So here’s the code using conditional comments adding a class to theelement: [code]<!–[if LTE 7 ]><html class="ie7"><[endif]–> <!–[if IE 8 ]><html class="ie8"><![endif]–> <!–[if IE 9 ]><html class="ie9"><![endif]–> <!–[if… read more
Fixed position prevents iOS devices from scrolling the overlay div. You are probably here because you were coding a website with overlaying divs and you discovered there’s a scrolling problem in iOS. This happens in the css position property of fixed-size or fixed position div. At first you will try the 2-finger swipe on your device and notice nothing happening.… read more
This is a tutorial on updating a unqiue mysql field in a matrix grid of elements by using PHP and jQuery. In this tutorial, we are presuming you are familiar with PHP and MySQL. This is the example we will use. The scenario is giving users access to special features on movies created by producers. This will be useful in… read more