I do some get/post action in my jquery code which return some html code. This html code is usualy one or two div’s with some long text in it. It work fine in FF or Chrome, but in IE (7/8) it only display first div without the second one. I spend 3 days on it, but I didn’t find any solution 🙁
Thank you for any help
EDIT:
some code:
$.post("http://www.xxx.pl/xxx/get_xxx.php?hash=<?php echo md5(time());?>&OBJW="+$(this).attr("id_objw"),function(data3){
$("#LEK").html(data3);
});
I had similar problems few months back and it was about malformed html markup. the html returned by server had unclosed tags. Correcting html markup that is returned by ajax call solved the problem for me.