I'm pretty sure you need to use it with <ul><li> or <ol><li> I don't
think you can use a select box

if you don't need to to be sortable then i would recommend something
like having two select boxes and moving them over

something like this

[code]
//these are two buttons
    $('#add').click(function() {
        return ! $('#select_box_1 option:selected').remove().appendTo
('#select_box_2');
    });

    $('#remove').click(function() {
        return ! $('##select_box_2 option:selected').remove().appendTo
('##select_box_1');
    });
[/code]

follow ?

Mean Mike

On Jul 17, 7:42 am, sken <skendlbac...@googlemail.com> wrote:
> Trying to get the draggable ui working with a multiple select field,
> but doesn't work.
> Does it actually work with option fields ?
>
> $("select option").draggable();
>
> it adds the ui-draggable class to the options fields, but they are not
> draggable :(

Reply via email to