I have a div that I'm trying to add html to. When I use a small html string it works, but when I try to add large html string nothing happens.
$("div") .html (data ) // about 1kB of html content
$("div" ) .html() // it return empty
If I do the same with a little html code like <p></p>
it works. Any suggestions?
I am using Internet Explorer 8, it works just fine in other browsers