github-tool / assets /script.js
Canstralian's picture
Create assets/script.js
88c7b55 verified
raw
history blame contribute delete
342 Bytes
$(document).ready(function() {
$('#getStartedBtn').click(function() {
alert('Welcome to GitHub Optimizer! Let\'s get started optimizing your repositories.');
});
$('#contactForm').submit(function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you shortly.');
});
});