Is it possible to have multiple javascript interpreters(engines) running in a single tab of a browser window? How?
I have looked into iframe but have not been able to invoke a separate instance of the javascript interpreter.
|
Is it possible to have multiple javascript interpreters(engines) running in a single tab of a browser window? How? I have looked into iframe but have not been able to invoke a separate instance of the javascript interpreter. |
|||
|
|
You may want to look at Web Workers. These partition execution of Javascript, but have a very defined way of interaction. |
|||||
|
|
Each distinct page has its own global environment. Related pages are linked in various ways ( When you do something like @Jarrod N's mention of web workers may also be of great interest to you. |
|||
|
|
|
As Pointy said, each distinct page has its own global environment. So iframe also has its own Javascript environment. My tests with iframe were failing because I was not waiting for the Javascript/webpage in the iframe to get fully loaded, before invoking it from the main page. p.s. WebWorkers was slightly complicated and has less support for what I wanted for my project. It looks to be a good solution for future projects though. |
|||
|
|