Bug Tracker

Opened 17 years ago

Closed 17 years ago

Last modified 12 years ago

#1013 closed bug (worksforme)

AJAX don't work in IE6

Reported by: mkknot Owned by:
Priority: major Milestone: 1.1.3
Component: ajax Version: 1.1.1
Keywords: IE AJAX Cc:
Blocked by: Blocking:

Description

when I use the core AJAX, it work on FF2.0 but not in f*ing IE6... my code :

/* first test function changePage(page){

$.ajax({

url: page, dataType : "html", beforeSend: function(msg){

$("body").append("<div id='TB_overlay'></div><div id='TB_load'><img src='images/loadingAnimation.gif' /></div>"); TB_overlaySize(); TB_load_position();

}, success: function(msg){

$('#TB_overlay,#TB_load').remove(); $('#contentPage').html(msg);

}

});

} work in FF2.0*/

/* second test */ function changePage(page){

$('#contentPage').load(page); $("#contentPage").ajaxSend(function(request, settings){

$("body").append("<div id='TB_overlay'></div><div id='TB_load'><img src='images/loadingAnimation.gif' /></div>");

TB_overlaySize(); TB_load_position();

}); $("#contentPage").ajaxSuccess(function(request, settings){

$('#TB_overlay,#TB_load').remove();

});

} end of code the argument page is "pages/index.php" who is a html page with <div>long text</div> and it don't appear in IE6 . U can see this here : http://62.39.92.7/projects/dev_manu

ps : xcuse for my poor english i'm french...

Change History (5)

comment:1 Changed 17 years ago by malsup

Is this still a problem for you? I looked at your page in IE6 and it's working fine.

comment:2 Changed 17 years ago by mkknot

I tested at home and it work BUT at work it doesn't work.

I'm with Win 2000/IE6 at work and Win XP/IE6 at home.

Maybe Win 2000 is the problem and not IE6...?

comment:3 Changed 17 years ago by malsup

Does FF work from your work PC?

comment:4 Changed 17 years ago by mkknot

yes FF work on Win 2000 (at work) et Win Xp (at home)

comment:5 Changed 17 years ago by john

Resolution: worksforme
Status: newclosed

The only think that I can figure is that your work has some issues with IE-specific application filters or firewalls. Since IE 6 works in other operating systems for the same page, I'm inclined to think that this is the case. Can you duplicate this on any other IE6/Windows machines? Considering that Mike was able to see that this is working on another IE6 machine, I'm going to mark this as "worksforme". If you're able to duplicate this again on another machine, please let me know - right now we can only ever determine that it's not working on your machine only - and since we can't test on your machine, I'm not entirely sure what to do.

Note: See TracTickets for help on using tickets.