Skip to content

Instantly share code, notes, and snippets.

@chyld
Created February 15, 2014 01:23
Show Gist options
  • Save chyld/9013020 to your computer and use it in GitHub Desktop.
Save chyld/9013020 to your computer and use it in GitHub Desktop.
var x = 3;
var y = 'hello';
var z = [1,2,3];
var obj = {x:x, y:y, z:z};
var url = 'http://12.15.34.23:4000/dostuff';
var type = 'post';
var data = obj;
$.ajax({url:url, data:data, type:type});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment