Skip to content

Instantly share code, notes, and snippets.

@Dreamka
Created December 30, 2014 19:58
Show Gist options
  • Save Dreamka/867ddb9ca73cd6f00886 to your computer and use it in GitHub Desktop.
Save Dreamka/867ddb9ca73cd6f00886 to your computer and use it in GitHub Desktop.
ajax.js
$.ajax({
type: "GET",
url: "/ajax.php",
data: "token=" + token + "&" +
"u_login=" + login + "&" +
"u_password=" + password,
success: function(req){
console.log(req);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment