Skip to content

Instantly share code, notes, and snippets.

@zrhans
Created July 17, 2014 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zrhans/564f1373e5f4654e0d72 to your computer and use it in GitHub Desktop.
Save zrhans/564f1373e5f4654e0d72 to your computer and use it in GitHub Desktop.
js
$(document).ready(function() {
$('#submit_item').click(function() {
var item = $('#item').val();
$.post("demo/process", {
"item": item
}, function(data) {
console.log(data.result);
$("#result").html(data.result);
}, "json");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment