Skip to content

Instantly share code, notes, and snippets.

@dgg
Created August 30, 2013 11:24
Show Gist options
  • Select an option

  • Save dgg/6388915 to your computer and use it in GitHub Desktop.

Select an option

Save dgg/6388915 to your computer and use it in GitHub Desktop.
Model binding dynamic collections. IV deleteRow
function deleteRow(column, options) {
$(column).parents('tr')
.hide({
complete: function () {
var $row = $(this);
$row.find(options.deletedSelector).val(true);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment