vote up 1 vote down star
1

This is partially a request for a workaround, and partially an attempt to get the word out that Internet Explorer's prototype implementation is still faulty.

The following code does not work on Internet Explorer.

XMLHttpRequest.prototype.old = XMLHttpRequest.prototype.open;
var x = new XMLHttpRequest();
x.old("POST", "test", false);

For IE 8 beta, and all previous versions, the XMLHttpRequest.prototype property never existed in the first place. In IE8, it does exist, but you'll get a "Invalid procedure call or argument" error. Internet Explorer doesn't like decoration.

Does anyone know of a workaround for this?

Update:

It has been pointed that I could override the entirety of XMLHttpRequest with a new function and constructor, and then create a wrapper script ala XMLHttpRequest.js. The prototype method is much shorter, so I would still prefer to use it for non-IE browsers.

flag

76% accept rate
Have you reported this to Microsoft? – John Saunders Mar 19 at 23:52
Not yet. I'm not sure I have the patience to figure out Microsoft's bug reporting channels. – Ambush Commander Mar 20 at 3:38
I wouldn't hurry, think I saw a report that got closed without comment. – Ross Mar 22 at 16:27

1 Answer

vote up 1 vote down check

Would this page offer a solution?

link|flag
Arguably using prototype to surgically override methods is much more elegant (30 lines versus 300 lines). That said, if I want to support IE, I'll probably have to do what that page suggests. – Ambush Commander Mar 20 at 18:26
I'd say that's the solution. Thanks for answering! – Ambush Commander Apr 19 at 23:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.