Skip to content

Instantly share code, notes, and snippets.

@peterbe
Created July 23, 2012 23:58
Show Gist options
  • Save peterbe/3167036 to your computer and use it in GitHub Desktop.
Save peterbe/3167036 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('#new-status').submit(function(e) {
e.preventDefault();
$.post('/status', { text: $(this).find('textarea').val() },
function(data) {
$('#statuses').append('<li>' + data.text + '</li>');
$(this).find('textarea').val('');
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment