> I have the same problem in IE. The .html() it's not working. > > On Aug 30, 12:39 pm, Scott González <[EMAIL PROTECTED]> wrote: > > > Have you verified that the HTML you're trying to add is valid? > > > On Aug 27, 12:18 pm, Kusmayadi <[EMAIL PROTECTED]> wrote: > > > > I have the same problem too ... I use jQuery 1.2.6. > > > > This script doesn't work on IE 6: > > > > <script language="javascript" type="text/javascript"> > > > > $(document).ready(function() { > > > $.ajax({ > > > type: "POST", > > > url: "someurl.php", > > > dataType: "html", > > > success: function(html_data) { > > > > $('#changeMe').html(html_data); > > > } > > > }); > > > }); > > > </script> > > > > <div id="changeMe"> </div> > > > > when I tried to display html_data using alert(html_data), the alert > > > window displayed the correct html. .text(html_data) also worked, but > > > not .html(html_data). > > > > is this bug? > > > > On Aug 18, 5:47 pm, Joe <[EMAIL PROTECTED]> wrote: > > > > > Dear friends, > > > > > i am working in a site, in which i have used jquery scripts. > > > > In Jquery the .html() is not working. I used .html() to print the > > > > output to one div from one file. > > > > If i use .html() in ie6 means the site in keep on loading..... > > > > > Please help me to fix the error. > > > > > It is very Urgent
Can anyone post a link to a test page that demonstrates this problem? The html method certainly does work in IE6, so there must be something specific to your documents or the html you're inserting. A link would be most helpful.