Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $.ajax({
  2. url: "/what",
  3. type: "POST",
  4. async: true,
  5. data: { information : "Sasay." , userdata : "Farmer Bob" },
  6. dataType: 'json'
  7. })
  8. .error(function (jqXHR, textStatus, errorThrown) {
  9. alert(errorThrown.errorCode); })
  10. .success(function(data) {
  11. if (data.length > 0) {
  12. alert('zaebca');
  13. }});};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement