InternsAccount
7/16/2018 - 6:16 AM

Open in new tab redirect URL after form submission

Open in new tab redirect URL after form submission

<script>
  function opennewtab(url){
  	var win=window.open(url, '_blank');
	}
  window.instapageFormSubmitSuccess = function( form ) {
  		opennewtab("http://google.com");
   }
</script>