Skip to main content

Bug Tracker

Side navigation

#7112 closed bug (worksforme)

Opened October 03, 2010 10:45PM UTC

Closed October 03, 2010 11:47PM UTC

AJAX error callback function executes twice in IE 6+

Reported by: misxa Owned by:
Priority: undecided Milestone: 1.4.3
Component: unfiled Version: 1.4.2
Keywords: Cc:
Blocked by: Blocking:
Description

AJAX error callback function executes twice in IE 6+ if the XML file is unavailable because it doesn't exist. The code below is the current code which produces this problem. The UI dialog in the error function pops up twice in IE. The same thing happens with simple alert() function. Other browsers work just fine;

Code:

$.ajax({

type: "GET",

url: "vjezbe/vjezbe.xml",

dataType: "xml",

success: xmlSuccess,

error: xmlError

});

function xmlError(xhr, message, optional)

{

$('<p class="poruka">XML podaci sa vježbama su nedostupni!</p>').dialog({

modal: true,

title: 'Poruka',

buttons: {

OK: function() {

$( this ).dialog( "close" );

}

},

resizable: false

});

}

Attachments (0)
Change History (1)

Changed October 03, 2010 11:47PM UTC by snover comment:1

resolution: → worksforme
status: newclosed

live test case Not reproducible.