Skip to content

Instantly share code, notes, and snippets.

@sipple
Created April 27, 2011 19:19
Show Gist options
  • Save sipple/944976 to your computer and use it in GitHub Desktop.
Save sipple/944976 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('td.notes_container input[type="button"]').each(function(index) {
$(this).click(function(event) {
var container = $(this).parent();
ajaxPostNotes(container);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment