Skip to content

Instantly share code, notes, and snippets.

@dgg
Created August 30, 2013 07:47
Show Gist options
  • Save dgg/6387282 to your computer and use it in GitHub Desktop.
Save dgg/6387282 to your computer and use it in GitHub Desktop.
Model binding dynamic collections. III Client re-order
function reorder(rows, sortSelector) {
$(rows).each(function (index) {
var $row = $(this);
$row.find(sortSelector).val(index);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment