Post a job

🕐 Day

Please note the rich text editor is provided through Quill JS. If you'd like to edit it, please follow their documentation!
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
This is a success message.
This is an error message.
This is also an error message.
function askForEmailAndSubmit() { const emailField = document.getElementById("emailInput"); const submitButton = document.getElementById("submitButton"); recognition.start(); // Start voice input recognition.onresult = (event) => { const spokenText = event.results[0][0].transcript; // Capture spoken email emailField.value = spokenText; // Populate email field // Optional: Automatically submit the form if (submitButton) { submitButton.click(); } }; recognition.onerror = (event) => { alert("Error capturing email: " + event.error); }; }