Test your knowledge on jQuery Events II Quiz: Form Events, Focus/Blur, Change/Submit & Event Delegation. This quiz contains 10 questions.
Level: Beginner
Topic: events-ii
Prevent a form from submitting
You want to stop the browser's default form submission when a user clicks a submit button.
Which jQuery handler correctly prevents the default submit behavior?
```javascript
$("#signup").on("submit", function (e) {
// your code here
});
```