crigor.com

jQuery Submit

When you submit a form, you might want to do something before the form is submitted. In the code below, we show an alert box with the value of the text field ‘name’.

1
2
3
$('#my-form').submit(function() {
  alert($('#name').val());
});

Comments