Could anyone can tell me how to add effect to all divs?
jQuery:
data = $("#sortable_list1").sortable("serialize");
update:function()
{
$.ajax({
data:serial,
url:"list.php",
type:"post",
success:function(data){
$("#serverResponse").html(data);
}
});
}
Html:
I have 2 divs which id is sortable_list1
item1 item2 item1 item2but it only first sortable_list1 can be serialize.how to sorable second or more? thanks