1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<!DOCTYPE HTML> <html> <script> startWorker(); function startWorker() { w = new Worker("scopes-worker.js"); } </script> <body> Hello World! </body> </html>