Form submit - Actions

Hey guys,
How do I redirect a URL to a new tab (target=“_blank”)? after successful form submit.

3 Likes

I see you have the same question as I do. Did you figure this out? If not, hopefully, someone will provide an answer.

1 Like

Anyone? It’s a must have this feature

1 Like

mmmm still no option to do so?

1 Like

+1

Did you find any workaround?

1 Like

WARNING ! some browsers and adblockers hates this type of actions they may block it!

here is the code it fires after successful form submit.

<script>
document.addEventListener( 'bricks/form/success', function ( event ) {
  
  window.open('https://sinanisler.com', '_blank');

});
</script>

2 Likes