Hello i'm having problem writing data (html, contains tables) returned from an ajax request to a div. The code works on Chrome, firefox..except IE (tested on IE 8) I use the following code:
function ajax_test(option) {
$('.loading').fadeIn();
$('.roto_messages').empty();
$.get("options.php?i="+option, function(data) {
$('.loading').hide();
$('.container').append(data);
$('.container').fadeIn(1000);
addthis.toolbox('.addthis_toolbox');
});
}
I tried using .html() too but it did not work on IE aswell. Thanks.