Response title
This is preview!




Hello everybody,
I'm using jQuery UI 1.8.14 with jQuery JavaScript Library v1.5.1.
I have a problem with IE8 and the following code:
$.ajax({
type: "GET",
url: "data.php",
dataType: "xml",
success: function(xml) {
$(xml).find('blob').each(function(){ ....} } });
IE8 won't reload the xml file while clicking a onClick-link, which is executing the ajax request. Using the F5-key is useless, too
Using Firefox 5 - there's no problem.
got it!
without caching it's working!
$.ajax({
type: "GET",
url: "data.php",
dataType: "xml",
cache: "false",....
© 2012 jQuery Foundation
Sponsored by
and others.
