you might need to use the full base path in your ajax request
.post('http://mysite.com/entries/order/')
i ran into a similar problem using .load()
you can break into your code like this:
$("#sortable").sortable({
update: function() {
$.post('/entries/order/
0/', $('.li').sortabl
Has anyone implemented the sortable feature using jQuery UI?
I found this online
http://stackoverflow.com/questions/955438/jquery-sortable-in-cakephp-stuck-a
t-ajax-part
I have the sorting part working but its not firing the ajax request to
update the order.
$("#sortable").sortable({
upd