| javascript Programming Glossary: sq2webkit-transform overwrites z-index ordering in Chrome 13 http://stackoverflow.com/questions/6953497/webkit-transform-overwrites-z-index-ordering-in-chrome-13  The desired result of this is to move sq1 away and reveal sq2 . HTML div id sq1 style z index 10 div id sq2 style z index.. and reveal sq2 . HTML div id sq1 style z index 10 div id sq2 style z index 5 JS fetch the element var el document.getElementById.. to be to add a translate3d operation to the underlying div sq2 element upon declaration or atleast before animating sq1 . Otherwise.. 
 |