This clone() works for me in ie 6.0 :).  May be C.fx.step is an
element in your page and IE 6 can't find it for some reason?

<head>
    <script src="../scripts/jquery-1.3.2.js" type="text/javascript"></
script>

    <script type="text/javascript">
        $(document).ready(function() {
            $("#btnCloneIt").click(function() {
                $("#container").append($("#toBeCloned").clone());
            });
        });

    </script>

</head>
<body>
    <div id="container">
        <div id="toBeCloned">I am a clone</div>
    </div>
    <input type="button" value="Clone It" id="btnCloneIt"
name="btnCloneIt" />
</body>


On Jan 14, 4:51 am, "m.ugues" <m.ug...@gmail.com> wrote:
> Hallo all.
> When i call the clone() function in Internet Explorer jQuery
> meltdowns :(
>
> The error reported in ie6 is:
> C.fx.step is null or not an object.
>
> Any idea how to fix the problem?
>
> Kind regards
>
> Massimo

Reply via email to