ok, ive searched on here for days and none of the answers I have found have worked for me :/ I am using Twitter bootstrap modal to pop up a form, this form uses ajax and submits to Thank you.
The problem is, I have several links that link to the same modal, and when it submits the first time, the same thank you page keeps coming up when i click on other links.
I want it to refresh and show the form again everytime the close button is clicked or a new link is clicked.
Heres an example of my links
<a data-toggle="modal" class="workspace" title="workspace-brochure" href="#myModal">Download Brochure</a>
<a data-toggle="modal" class="byodbtn" title="byod-whitepaper" href="#myModal">BYOD</a>
and here is my modal
<div class="modal hide fade workspace-brochure" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
{sn-english-form-workspace}
</div>
</div>
I have tried tons of replies I see on here to other people and nothing works for me :(