I'm trying to make a page with transitions not based on buttons, but
on moving an element from one ul-list to another.

I've made the functionality of moving an element between lists with
jQuery like this:

jQuery(document).ready(function() {
        jQuery("#manager").sortable({
                connectWith: ['#volunteer', '#manager'],
                receive: function(event, ui) {
                }
        });
        jQuery("#volunteer").sortable({
                connectWith: ['#manager', '#available']
        });
        jQuery("#available").sortable({
                connectWith: ['#volunteer', '#manager']
        });
});

the receive function should hold the ajax call to the database, but
i'm not really sure what to put there. is there a pure JS-way to
update the transition..?

-- 
You received this message because you are subscribed to the Google Groups "Hobo 
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/hobousers?hl=en.

Reply via email to