$('#win-date').change(function() { window.location = 'https://boss.luckydraw.prompt-tech.net/winner.html?date=' + $(this).val(); }); $("#win-submit").click(function(){ $('#modalBody').html(''); var mobile = $("#win-phone").val(); $.ajax({ type: "POST", url: "https://boss.luckydraw.prompt-tech.net/apps/ajax/reward.php", cache: false, data: "mobile=" + mobile, success: function(msg){ $('#modalBody').html(msg); $('#myModal-card').modal({ show: true }); } }); });