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">&nbsp;</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

Reply via email to