I have a btn
<a href="#" id="submitBtn" class="btnGray">Upload Docs</a>
and a jquery code to submit the form.
$("#docSaveBtn").click(function(){
$("#docForm").submit();
});
I have multiple forms on the same page and I want to send the form id to submit which will submit the desired form when click of button with class 'btnGray'.
Your help is highly appreciated.