I would like to stop disable submit button once validation is completed and form is submitting so I will not have multiple inserts to DB. I have not updated post with full f
Simplest method that should work everywhere, obviously you would run your code and re-enable it if necessary:
$(document).ready(function(){ $("#submitBtn").on("click",function(){ $(this).attr("disabled","disabled"); }); });
http://jsfiddle.net/calder12/8Syrh/1/