Skip to content

Instantly share code, notes, and snippets.

@andmcgregor
Forked from dbc-challenges/lucky_ajax.md
Last active December 19, 2015 00:49
Show Gist options
  • Save andmcgregor/5871140 to your computer and use it in GitHub Desktop.
Save andmcgregor/5871140 to your computer and use it in GitHub Desktop.
$(document).ready(function () {
$('form').submit(function() {
event.preventDefault();
$.post("/rolls").done(function(results) {
var html = $(results).find('#die').html();
$('#die').html(html);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment