Reload page after click OK button

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();
});
2 Likes

Hi there, @Nebojsa :wave:

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 :wink:

1 Like