Skip to content

Instantly share code, notes, and snippets.

@jdsiddon
Created January 19, 2014 18:08
Show Gist options
  • Save jdsiddon/8508624 to your computer and use it in GitHub Desktop.
Save jdsiddon/8508624 to your computer and use it in GitHub Desktop.
$("#hugo").click(function(e) {
var data = $("#urlForm").serialize(); //saves current form element
console.log("REQ: " + data);
$.post("/add_new_url", data, function(data, textStatus,jqXHR) {
// console.log("RES: " + JSON.stringify(data));
console.log(data);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment