jQuery moving MultiSelect values to another MultiSelect

前端 未结 8 1338
感情败类
感情败类 2020-12-23 12:27

So I have a MultiSelect box with x values which I need the ability to move to another MultiSelect box and vise versa.


            
            
            
            
            
            
        
        add > >
    

and Javascript code

$("#add").click(function(){
    $("#select1 option:selected").remove().appendTo($("#select2"));
})
$("#remove").click(function(){
    $("#select2 option:selected").remove().appendTo($("#select1"));
})

Make sure you imported jquery.js file.

提交回复
热议问题