I'm retreiving html data with jquery .ajax() in my program.
All's merry in IE9, Chrome, FX and Opera.
There is an issue in IE7 and IE8,
My jQuery code is as follows,
$j.ajax({
type:'POST',
datatype:'HTML',
url:processUrl,
success:function(data){
alert(data);
var testdata = $j(data).find(".category-products");
alert(testdata.html());
$j(".col-main .category-products").empty().replaceWith(testdata);
},
complete: function(){
//doingSomething
}
});
Now, when I alert data, I get my html data (in IE7 and IE8 as well).
But, when I alert testdata, I get null in IE7 and IE8.
How can I go about solving this issue?
You can have a look at the error here (hit the numbers for pagination) -
If you're debugging, then you'll find my code at line 11949. The script file will have a long weird name as it's merging other script files at runtime.
UPDATE
I implemented the same solution on localhost, and it's working fine on all browsers. Is it a server issue?
UPDATE 2
The issue has been solved, I'm guessing it was a caching issue on the server, 'coz I installed a fresh copy of my project in a different location and it's working fine in all browser. Please vote to close.