deep-penetration / index.js
Canstralian's picture
Create index.js
d7d61f9 verified
raw
history blame contribute delete
392 Bytes
$(document).ready(function() {
$('#getStarted').click(function() {
alert('Welcome to the Python Code Review & Debugging Assistant!');
});
$('#contactForm').submit(function(e) {
e.preventDefault();
alert('Thank you for contacting us, ' + $('#name').val() + '! We will get back to you soon.');
$(this).trigger("reset"); // Reset the form
});
});