What event is fired when a user places their cursor in a form control?
focus
What event is fired when a user’s cursor leaves a form control?
blur
What event is fired as a user changes the value of a form control?
input
What event is fired when a user clicks the “submit” button within a ?
submit
What does the event.preventDefault() method do?
if the event does not get explicitly handled , it’s default action should be taken
What does submitting a form without event.preventDefault() do?
page refereshed
What property of a form element object contains all of the form’s controls.
element property
What property of form a control object gets and sets its value?
values property