-
Notifications
You must be signed in to change notification settings - Fork 0
js quirks in popular browsers #6
Copy link
Copy link
Open
Description
IE
Event quirks of IE
-
make sure the specific versions
-
use
Event.returnValueto preventDefault and get the status whether the default has been prevented or not -
use
Event.cancelBubble = trueto stop event stopPropagation
vanilla js
- ie9 does not support the strict mode
- <= ie9 do not suport
XMLHttpRequest,butXDomainRequest,
however, <=ie9 do not supportFormData,so you cannot send files with it
related: example ---- XDomainRequest object
Reactions are currently unavailable