Guest User

Untitled

a guest
Feb 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $.ajax({
  2. url : 'www.miweb.com',
  3. data : {
  4. userName : data_json['userName'],
  5. userId : data_json['userId']
  6. },
  7. type : 'POST',
  8. dataType : 'json',
  9. success : function() {
  10. $('#newTaskModal').modal('hide');
  11. },
  12. error : function(data) {
  13. alert(data.responseJSON['message']);
  14. },
  15. });
Add Comment
Please, Sign In to add comment