Refresh On Submit

Maybe someone else can use this bit of script to refresh the page on submit. Nothing complicated, but it works.
Use the tip on how to identify the element and then place it where the x_element_… is in the script.

$(document).ready(function()
{ $(‘#x_element_… button’).click(function()
{ window.location.reload();
});
});

3 Likes