problem with sortable('toArray') output
$("#sortable").sortable();
$("#sortable").disableSelection();
$("#sortable").bind('sortupdate', function(event, ui) {
var result = $("#sortable").sortable('toArray');
console.log(result[1]);
});
produces:
"Array"
Has there been some change where the Array is now multidimentional or
something?