// jQuery(function() { setTimeout(function() { $('.alert-success').fadeOut('fast'); $('.alert-danger').fadeOut('fast'); }, 10000); // $(".select2").select2(); function loadfun() { $("#loader-wrapper").hide(); } function change_shop(shop_id) { if (shop_id != "" && shop_id != null) { $.ajax({ url: "https://app.touchcard.io/change-shop", type: "get", data: { _token: "u8OId6g9yBGIOtZ8yHgEyFITVaEugb5bZWcbmKHC", shop_id: shop_id }, success: function(response) { window.location.reload() } }) } else { alert('Please Choose Any Shop'); } } $("#current_shop_id_modal").on('change', function() { change_shop($(this).val()) }) // })