Responsive HTML, CSS & JS with Regex.

Solution retrospective
After you successfully send the email, how do you remove the success message after a set amount of time?
Please log in to post a comment
Log in with GitHubCommunity feedback
- @alexattt
To remove success message, you can use setTimeout, in your case it could look something like this setTimeout(function(){ text.innerHTML = ' '; }, 3500); This will remove Success message after 3.5 seconds ;)
Marked as helpful
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord