1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<!DOCTYPE HTML> <html> <script> startWorker(); function startWorker() { new Worker("simple-worker.js"); } function startWorkerWithMessage() { var w = new Worker("simple-worker.js"); w.postMessage({yo: 'yo'}) } </script> <body> Hello World! </body> </html>