Side navigation
#1013 closed bug (worksforme)
Opened March 01, 2007 03:43PM UTC
Closed March 18, 2007 06:59PM UTC
Last modified March 15, 2012 05:36PM UTC
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...
Attachments (0)
Change History (5)
Changed March 07, 2007 11:17PM UTC by comment:1
Changed March 08, 2007 10:23AM UTC by comment:2
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...?
Changed March 09, 2007 01:33AM UTC by comment:3
Does FF work from your work PC?
Changed March 16, 2007 10:39AM UTC by comment:4
yes FF work on Win 2000 (at work) et Win Xp (at home)
Changed March 18, 2007 06:59PM UTC by comment:5
resolution: | → worksforme |
---|---|
status: | new → closed |
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.
Is this still a problem for you? I looked at your page in IE6 and it's working fine.