Skip to content

Instantly share code, notes, and snippets.

@lrebrown
Last active December 10, 2015 23:38
Show Gist options
  • Save lrebrown/4510907 to your computer and use it in GitHub Desktop.
Save lrebrown/4510907 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(function() {
$('#testform').submit(function() {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
url: "{{ url('home') }}foo",
data: '{ "id": "1234", "name": "John Doe" }'
}).done(function() {
alert( "Done!" );
});
return false;
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment