I\'m using Twitter Bootstrap modal window functionality. When someone clicks submit on my form, I want to show the modal window upon clicking the \"submit button\" in the fo
BootStap Wizard Form × Modal header One fine body…
One fine body…
You can launch the modal with the code below this.
$(document).ready(function(){ $("#submitButton").click(function(){ $("#myModal").modal(); }); });