Skip to content

Commit

Permalink
Create script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhruva1231 authored Sep 25, 2024
1 parent 7151b4b commit b0c887e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// script.js
document.addEventListener('DOMContentLoaded', function() {
const form = document.querySelector('form');

form.addEventListener('submit', function(event) {
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const message = document.getElementById('message').value;

// Simple validation to check if fields are empty
if (!name || !email || !message) {
alert('All fields are required!');
event.preventDefault(); // Prevent form submission
}
});
});

0 comments on commit b0c887e

Please sign in to comment.