Memory leaks on with draggable and droppable plugins

Memory leaks on with draggable and droppable plugins


I've found memory leaks when using those plugins.
Just try this code:
<html>
<head>
    <script src="jquery-1.2.4b.js" type="text/javascript"></script>
    <script src="ui.core.js" type="text/javascript"></script>
    <script src="ui.draggable.js" type="text/javascript"></script>
    <script src="ui.droppable.js" type="text/javascript"></script>
    <script type="text/javascript" charset="utf-8">
        $(function() {
            var html = [];
            for ( var i=0; i < 10; i++ )
                html.push("

test

");
            $(html.join(""))
.appendTo('body')
.droppable();
        });
    </script>
</head>
<body></body>
</html>