Multithreaded JavaScript how to?

javascript, multithreading, user-interface

Solution

The closest you're gonna get is web workers (only in FF 3.5 / HTML5). Check it out - http://www.whatwg.org/specs/web-workers/current-work/

Problem

Is there any idea (library or methodology) to create multithreaded apps in JavaScript?

Original source