//normal-Javascript
wenn (navigator.appName == „Microsoft Internet Explorer“ && substr (navigator.appVersion, 0, 3) == „4.0“) {
Alarm („IE8“);
} sonst {
Alarm („nicht IE8“);
}
//With jQuery
wenn ($browser.msie && $browser.version == „8.0“) {
Alarm („IE8“);
} sonst {
Alarm („nicht IE8“);
}
|