I'm trying to have an onlick alert, then redirect to a new window
This is what I have so far
<button type="button" class="button" onclick="pop()">Renew Subscription</button>
</div>
<script>
function pop() {
alert("40% Discount has been applied");
window.location.href="http://LINKHERE.COM", '_blank';
}
</script>
Right now redirects in the same window but prompts a "leave site? Changes you made may not be saved."