Response title
This is preview!
preventDefault: function() {
var e = this.originalEvent;
this.isDefaultPrevented = returnTrue;
if ( !e ) {
return;
}
// If preventDefault exists, run it on the original event
if ( e.preventDefault ) {
e.preventDefault();
// Support: IE
// Otherwise set the returnValue property of the original event to false
} else {
e.returnValue = false;
}
},
So I guess there must just be some other reason (and I'll file a separate ticket for it if I find it) why return false isn't working for us in IE8.
© 2013 jQuery Foundation
Sponsored by and others.