isischristopher / travel-diary

0 stars 0 forks source link

Clear text box #5

Open isischristopher opened 4 years ago

isischristopher commented 4 years ago

User Story

As a user, when I type a message into the input field of any card, and press submit, the entry should appear in a "diary" below the cards, but the text box should also clear.

AC

WHEN a message is typed into the input field THEN the submit button is pressed AND the message will print below the location cards and the text box is cleared.

Dev Notes

isischristopher commented 4 years ago

$("#reset").click(function(){ $(':input').val(''); $('textarea').val(''); });

isischristopher commented 4 years ago

$('#formId')[0].reset();