Tell us what’s happening:
The project is telling me to prevent the default of the event which is in this case the ‘submit’ button in a form. It’s then asking me to set the global error flag to false? From what I’ve looked up the only global error that makes sense is: ‘window.onerror’
Am I missing something?
Your code so far
function calculateCalories(e) {
e.preventDefault();
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36
Challenge Information:
Learn Form Validation by Building a Calorie Counter - Step 66