Hi, i used .html(), but IE6 is crashed. i found the solution: The problem with expression in css (max-height hack for IE):
JS: $("#chat_userlist").html(out); // here chrashed CSS: #chat_userlist .u .p img{ width: 100%; height: auto; max-height:40px; _height:expression( this.scrollHeight > 40? "40px" : "auto" ); /* <-- the problem, remove this */ } Solution: remove expression, and run after .html() the max-height js code. Have a nice day. On aug. 18, 11:47, 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() inie6means the site in keep on loading..... > > Please help me to fix the error. > > It is very Urgent