Hi I\'m using Bootstrap for the first time and I can\'t get my modal form to stay open on clicking the submit button. I\'ve searched SO but all related questions deal with slig
Use this to prevent bootstrap modal window from closing on form submission
$( "form" ).submit(function( event ) { event.preventDefault(); });