Resources for Vanilla Javascript
I have found that chatgpt and other LLM's are pretty good with Vanilla JS. But still you need to understand what they are suggesting.
- Dom Manipulation - some good tips for avoiding some common pitfalls
- Working with URLs
- Forms Submission: It is preferrable to use addEventListener over onsubmit for form submission. See submit event example
function logSubmit(event) {
log.textContent = `Form Submitted! Timestamp: ${event.timeStamp}`;
event.preventDefault();
} const form = document.getElementById("form");
const log = document.getElementById("log");
form.addEventListener("submit", logSubmit);