Hello!

I'm using Sortables to drag n' drop divs in a project.
Well, all non IE browsers the code works fine!!!

The javascript code is
$('div.recebeDrag').Sortable({
        accept          : 'drag',
        helperclass     : 'dragAjuda',
        activeclass     : 'dragAtivo',
        hoverclass      : 'dragHover',
        handle          : '.grupo_titulo',
        opacity         : 0.7,
        onChange        : *function*()
                {
                    atualiza_debug();
                },
        onStart : *function*()
                {
                    $.iAutoscroller.start(*this*, document
.getElementsByTagName('body'));
                },
        onStop : *function*()
                {
                    $.iAutoscroller.stop();
                }
    });

I can move the div ONCE in IE. When I wanna move again, the div seems
"dead". I can't move and the select doesn't make anything!

The live *problem*
http://72.29.82.68/~gruposof/inicial.html


Thanks!

Reply via email to