Skip to main content

Bug Tracker

Side navigation

#6214 closed bug (duplicate)

Opened March 04, 2010 01:03AM UTC

Closed March 04, 2010 03:42PM UTC

Last modified March 04, 2010 03:42PM UTC

1.4.2 AJAX .abort script error in IE

Reported by: itbeyond Owned by:
Priority: Milestone: 1.4.3
Component: ajax Version: 1.4.2
Keywords: abort Cc:
Blocked by: Blocking:
Description

Request .abort() in IE seems to throw a script error which it did not do in 1.3.2. The code below:

var p5k_aid = null;

$jq(document).ready(function() {

$jq('#p5k_pib_b_dl a').mouseover(function() {

if (p5k_aid) {p5k_aid.abort()}

p5k_aid = $jq.get(BaseURL + '/Utilities/Ajax/getKeyword.aspx?id=W' + $jq(this).attr('id').replace('p5k_', ''),

function(html) { $jq('#p5k').html(html);});

}).first().mouseover();

});

Works perfectly in Firefox (firebug shows the abort) but in IE throws a script error: Object doesn't support this property or method - Line: 170 - Char: 489. Coupled with this the abort itself does not trigger so the ajax command processes to the end (in my case can cause out of sequence responses)

I have just started using 1.4.2 and this is the first little issue I have found. Any help or ideas.

Attachments (0)
Change History (3)

Changed March 04, 2010 01:18AM UTC by itbeyond comment:1

Sorry I posted this before I found the other issues I believe it is a duplicate however it is still occurring.

Changed March 04, 2010 03:42PM UTC by john comment:2

resolution: → duplicate
status: newclosed

Changed March 04, 2010 03:42PM UTC by john comment:3

Duplicate of #6037.