AJAX

PHOTO EMBED

Sun Sep 25 2022 17:39:51 GMT+0000 (Coordinated Universal Time)

Saved by @michiiee

jQuery.when(
  jQuery.ajax({
    type: "POST",
    dataType: "json",
    url: "../custom_scripts/api/anmeldung/zum_turnier_anmelden_check.php",
    data: {
      turnier_id: turnier_id
    }
  }),
  jQuery.ajax(
    {
      url: "../custom_scripts/api/user/get_user_info.php",
      type: 'GET',
      dataType: 'json',
    }
  )
).then(function (resp1, resp2) {
  if ( resp1[0].check === 0 ) {
    
  }
});
               
content_copyCOPY