Skip to main content
GuruCoool Education
Side panel
Course search
Close
Course search
Toggle search input
Join Us
Explore
Collapse
Expand
Contact Us
All courses
Blogs
Username or email
Password
Log in
Lost password?
Cookies notice
Please fill this
form
to join us.
We will review and email you your username and password
window.addEventListener("load", function() { const form = document.getElementById('my-form'); form.addEventListener("submit", function(e) { e.preventDefault(); const data = new FormData(form); const action = e.target.action; fetch(action, { method: 'POST', body: data, }) .then(() => { alert("Success!"); }) }); });