views:

21

answers:

0

Hello

I have divs inside columns and want to make them sortable. I'm using jQuery UI for this. However, I need to do something on the element which is currently being sorted. How is that possible?

Here's my current code:

$('.column').bind('sortstart',function({
    $(CURRENTLY_MOVING).doStuff();
});

Martti Laine