Skip to content

Instantly share code, notes, and snippets.

@paulmolluzzo
Created August 20, 2014 16:45
Show Gist options
  • Save paulmolluzzo/cef3bac129cac10de909 to your computer and use it in GitHub Desktop.
Save paulmolluzzo/cef3bac129cac10de909 to your computer and use it in GitHub Desktop.
Cancelling a form and resetting it
'click .cancel-edit-section': function(e) {
var parent = $(e.currentTarget).closest('.section');
$(parent).find('#section-title input').val(this.title);
$(parent).find('#section-content textarea').val(this.content);
$(parent).toggleClass('editing');
return false;
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment