I am trying to get the click event of a submit button on my form...
For form you can also bind submit button click on form.
$("#form_selector").submit(function{ // Do your stuff })
where 'form_selector' is id of the form of which submit button is clicked.