Created
October 18, 2014 09:30
-
-
Save insin/317108e9df278c350f30 to your computer and use it in GitHub Desktop.
My 7 year-old's new favourite webpage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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