Sortable Callback Not Working

Sortable Callback Not Working


I'm attempting to use the stop and update callbacks in for the
sortable.
$("#div").sortable({hoverClass: 'sorthover', stop: function()
{ alert('updated'); } });
or
$("#div").sortable({hoverClass: 'sorthover', update: function()
{ alert('updated'); } });
neither of which work. However, the start callback does work..
$("#div").sortable({hoverClass: 'sorthover', start: function()
{ alert('updated'); } });