Skip to content

Instantly share code, notes, and snippets.

@insin
Created October 18, 2014 09:30
Show Gist options
  • Save insin/317108e9df278c350f30 to your computer and use it in GitHub Desktop.
Save insin/317108e9df278c350f30 to your computer and use it in GitHub Desktop.
My 7 year-old's new favourite webpage
<!DOCTYPE html>
<script>
function sayIt() {
speechSynthesis.speak(
new SpeechSynthesisUtterance(document.querySelector('textarea').value)
)
}
</script>
<textarea></textarea><br>
<input type="button" value="Say It!" onclick="sayIt()">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment