Guest User

Untitled

a guest
Feb 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function saveTpl(file, date) {
  2. var process = true;
  3. $.ajax({
  4. type: "POST",
  5. url: "misc.php?action=fileExist",
  6. data: "file="+filename,
  7. success: function(msg) {
  8. if (msg == 'yes') {
  9. process = false;
  10. alert('ajax process val='+ (process ? 'true' : 'false'));
  11. }
  12. }
  13. });
  14. alert(process ? 'true' : 'false');
  15. }
Add Comment
Please, Sign In to add comment