Is it possible to reload page after submit contact form or after click OK button.
Something like this
$( ".buttonbase__buttoncontainer-sc-p43e7i-3" ).click(function() {
location.reload();
});
Is it possible to reload page after submit contact form or after click OK button.
Something like this
$( ".buttonbase__buttoncontainer-sc-p43e7i-3" ).click(function() {
location.reload();
});
Hi there, @Nebojsa
Here is the code we’ve added to the Custom JS field on the Settings tab of your widget’s settings:
widget.on('submit', () => {
window.open(window.location.href, '_self');
});
Try it out and let me know if you like the result