Cross Browser CSS3 and MS Filter Matrix Transform Rotation Using jQuery

Drag the waves.Click the waves to disable mouse rotating. Flip the waves 90 degrees clockwise Flip the waves 90 degrees counter-clockwise Flip the waves 270 degrees clockwise (same as above) Flip the waves 26 degrees clockwise Flip the waves 84 degrees counter-clockwise Flip the waves 108 degrees counter-clockwise Flip the waves 180 degrees either direction [...]

Universal Clearfix Hack

I’ve been using this little piece of code all over the place for months now. Tracked down the original use here: /* CLEARFIX !! — slightly enhanced, universal clearfix hack */ .clearfix:after { visibility:hidden; display:block; font-size:0; content:” “; clear:both; height:0; } .clearfix { display:inline-block; } /* start commented backslash hack \*/ * html .clearfix { [...]

Detecting IE6 in jQuery

if ($.browser.msie && parseInt($.browser.version)< 7) { //code goes here }