[wd_asp elements=’search’ ratio=’100%’ id=1]

Browser compatibility CSS code

7th April 2014

CSS

Css - Codehaven

PHP VERSION '; echo '.movearrow {margin-left: -42px;}'; echo '

';
}

// IE
if ($msieold) {
echo '

';
}

if ($msienew) {
echo '

';
}

?>

Hello

OR JQUERY VERSION
$(document).ready(function(){
if($.browser.webkit) {
$('html').addClass('webkit');
} else if($.browser.mozilla) {
if($.browser.version >= '17.0') {
$('html').addClass('mozilla');
} else {
$('html').addClass('mozilla-older');
}
} else if($.browser.opera) {
$('html').addClass('opera');
}
$.browser.camino = /camino/.test(navigator.userAgent.toLowerCase());
if ($.browser.camino) {
$('html').addClass('camino');
}
});