On Click 2 Open Tabs – Power Buttom
Method #1
.button { all: unset; background-color: #1a59bc; /* Orange*/ border: none; color: white; padding: 10px 15px; text-align: center; text-decoration: none; display: inline-block; font-size: 24px; font-family: georgia; margin: 4px 2px; border-radius: 12px; cursor: pointer; -webkit-transition-duration: 0.4s; /* Safari */ transition-duration: 0.4s; } .buttona { background-color: #1a59bc; /* Blue``*/ border: none; color: white; padding: 10px 15px; text-align: center; text-decoration: none; display: inline-block; font-size: 28px; font-family: georgia; margin: 4px 2px; cursor: pointer; -webkit-transition-duration: 0.4s; /* Safari */ transition-duration: 0.4s; } .button1:hover { box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19); background-color: #ff0000; /* Blue``*/ } .button2 { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); }
Insert This into “Custom HTML”
<script type="text/javascript"> function getUrl() { return "https://putyourdomainhere.com/thank-you-page-2/"; } </script> <center><a href="https://putyourdomainhere.com/script-test-thank-you-page-1/" target="_blank" onclick="document.location.href=getUrl();"><button class="button button1"><strong>I'M NOT BOTs!</strong></button></a></center>
Method #2
<script type="text/javascript"> function getUrl() { return "https://yourdomainname.com"; } </script>
Insert this after “_blank” on HTML
onclick="document.location.href=getUrl();"