Open a bootstrap modal after submitting a form

I have a page, where I have a form, once its submitted I’m trying to have a modal open up.
I have this in the

<script type="text/javascript">
$(document).ready(function() {
$('#Submit_A_Review').submit(function() {
$('#thankyouModal').show();
});
});
</script>

That is the id of my form and thats the id of the modal

And what exactly is the issue? Can we get a (non) working demo that we can play with?

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.