Guest User

Untitled

a guest
Nov 7th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. GetData();
  2. var user;
  3. var pass;
  4. function GetData() {
  5. $.ajax({
  6. url: '',
  7. dataType: 'json',
  8. type : 'GET',
  9. async: false,
  10. success: function(data) {
  11. console.log(data);
  12. user = data.sip_user;
  13. pass = data.sip_password;
  14. }
  15. });
  16. }
Add Comment
Please, Sign In to add comment