Hey all,
I’m having this issue where after submitting a form, the page sort of jumps away from the “Success Message” and I can’t seem to figure out why. I made sure the div was the same height as the Form itself but that doesn’t seem to solve the problem.
Link to Video - Recording #1
Here is my site Read-Only: LINK
(how to share your site Read-Only link )
Also having problems with this. If I find a solution I’ll post it here
pkarpisek
(Karpi Studio)
August 26, 2023, 11:26am
3
Did someone found solution to this?
MAP
(Matthias Perdeck)
November 1, 2023, 4:05pm
5
Also having this issue… Anyone found a solution?
Hi! have you found a solution for this? i am facing this problem too
FlexCode
(Felix)
June 17, 2024, 5:47pm
8
You can prevent the default behavior on form submissions with this. I used it to show a custom success message without the window jump.
<script>
$(document).ready(function() {
$(".your-form").on("submit", function(event) {
event.preventDefault(); // Prevent the default form submission
// Add your custom success message logic here
$(".success-message").show(); // Example: Show a custom success message
});
});
</script>