Login Register

Operation Aborted

IE 6- Operation Aborted. same code works fine for IE 7

This is what I have in the head content

script type="text/javascript" src="/dojo/dojo/dojo.js"
(with the proper tags, of course)

It fails with "Operation aborted" in IE 6. Same code works fine in IE7.
Could anybody help, please?

dijit.wai.onload fires "Operation Aborted" IE bug

Hi there,

I've found that the following code lines fire the "Operation Aborted" IE bug , as there seems dijit is creating a div node when document.body() == null (document body is not yet closed):

if(dojo.isIE || dojo.isMoz){    // NOTE: checking in Safari messes things up
    dojo._loaders.unshift(dijit.wai.onload);
}

I've changed those lines to these and the error doesn't show anymore:

if(dojo.isIE || dojo.isMoz){ // NOTE: checking in Safari messes things up

Syndicate content