$(document).ready(function() { if(getUrlParam('spendwin') == '1'){ // show popup on when its ready var ajaxTimeout; function autorun() { if ($(".challenge-shortcut-btn").is(":visible")){ setTimeout(()=>{ $('.challenge-shortcut-btn').hide(); },100) clearInterval(ajaxTimeout); ajaxTimeout = false; } } ajaxTimeout = setInterval(autorun, 100) }else{ // show popup on when its ready var ajaxTimeout; function autorun() { if ($(".challenge-shortcut-btn").is(":visible")){ setTimeout(()=>{ $('.challenge-shortcut-btn').click(); $('.challenge-shortcut-btn').hide(); },100) clearInterval(ajaxTimeout); ajaxTimeout = false; } } ajaxTimeout = setInterval(autorun, 100) } function removeOthers() { const popupId = 'popup_upload_receipt'; const selectId = `#${popupId}-store`; $(selectId).on('select2:open', function (e) { $(`${selectId} option[value='others']`).remove(); $(`${selectId} option`).filter(function() { return $(this).text() === 'Elanco Malaysia'; }).remove(); $(`${selectId} option`).filter(function() { return $(this).text() === 'Elanco'; }).remove(); }); } removeOthers(); });