Restaurant-Website-Template
Restaurant-Website-Template copied to clipboard
Update scripts.js
Improvements Made:
- Event Binding: o Changed $("#subscribe").click(function (event) { to $("#subscribe").on("click", function (event) { for consistency and better practice.
- Variable Naming: o Renamed subscribedemail to subscribedEmail to follow camelCase naming convention.
- Trim Input: o Added .trim() to $("#emailaddress").val() to remove any leading or trailing whitespace.
- Validation: o Added a check to ensure the email field is not empty before showing the alert and clearing the field.
- Clear Input Field: o Added a comment for clarity on why the input field is being cleared