Sortable widgets

Sortable widgets


Hi,
On a project that I'm working on, I use the sortable UI.
And every sortable div has the same class name, so that they
automaticly can connect.
I have this:
    $(".widgetGroup").sortable({
        connectWith: [".widgetGroup"],
        cursor: 'pointer'
    });
The code above works fine, but the problem is I can't serialize.
If I do it like the examples on the jQuery website (with id's and
multiple connects, like the code above for every div, total of 8 divs)
it works, but that isn't great.
- Ramy