Slackbot
11/24/2022, 12:20 PMDivyank Jain
11/24/2022, 12:40 PMManish Sharma
11/24/2022, 12:47 PMonFormSubmit: function($form) {
var free_trial = $form.find('select[name="free_trial"]').val();
setTimeout( function() {
if ( free_trial == "Yes" ) {
window.location.href = "<https://website.com/already-used-free-trial>";
}
else{
window.location.href = "<https://website.com/trial-started>";
}
}, 500 ); // Waits 1/2 second to redirect.
}
});
You can customise the copy on these 2 URLs based on what you need.Swagata Kumar
11/24/2022, 1:02 PMAnanda Narasimhan
11/25/2022, 1:36 PMNiranjan Bala
11/28/2022, 8:00 AMVartika Gupta
02/22/2023, 8:34 AM