Tengo una segunda version que si cambia el valor, pero por algun motivo no lo pone en el input
Código:
$("#ordenable").sortable({
update: function(event, ui) {
$('table tr').each(function() {
var newVal = $(this).index() + 1;
$(this).children('.ordena').html(newVal);
$(this).children('td:first-child').html(newVal);
});
}
}).disableSelection();
en el texto del td lo pone perfecto, pero en el input con clase .ordena no cambia nada ¿que estoy poniendo mal?