My code works fine in FF/Chrome/Everything except IE(failed in both 7/8, didn\'t bother going furthur down). Due to restrictions, I cannot use jQuery and am hard-coding the
In IE the event object is not passed as the first argument to an event handler. Instead it is a global variable:
function mousedown(e){
var evt = e || window.event; // IE compatibility
if(evt.preventDefault){
evt.preventDefault();
}else{
evt.returnValue = false;
evt.cancelBubble=true;
}
//Processing
};