I want to exclude some code from browsers earlier than ie8, but I am failing at the first hurdle.
at present, my code should only detect if it is IE at all, but it doesn't
$.each(jQuery.browser, function(i, val) {
if (i!='msie'){
notIE = true;
}
});