$(window).load(function () {
if($.browser.msie && $.browser.version==\"6.0\") {
// do stuff
}
});
Just realized that $.browser h
Show the browser Information
jQuery.each( jQuery.browser, function( i, val ) {
$( "" + i + " : " + val + "" )
.appendTo( document.body );
});
Alert the version of IE's rendering engine that is being used. Will not work in jQuery 1.9 or later unless the jQuery Migrate plugin is included.
if ( $.browser.msie ) {
alert( $.browser.version );
}