Home / Admin / om.Optin.success example 2
Duplicate Snippet

Embed Snippet on Your Site

om.Optin.success example 2

Code Preview
js
document.addEventListener('om.Optin.success', function(event) {	
	if( '{{id}}' !== event.detail.Campaign.id ) return;
    
    let url = 'https://www.google.com/'; // Update with the specific URL you want to open in a new tab
    let urlRedirect = window.open(url, '_blank');
	urlRedirect.focus();
} );

Comments

Add a Comment