The use of Web Workers is possible, but you need to code it all in core javascript. in a Worker, there is no DOM or DOcument tree, thus jQuery cannot be used.
Example:
Paul.
Re: Showing a message
As long as you understand that everything in the browser is single threaded (javascript, screen painting, etc), then you can display a message, but you will need to use a setTimeout() so that your next piece of javascript only executes a few seconds later...Example:
showMessageOnTheScreen();
setTimeout(function(){
// Start doing your updates here...
}, 1000);
If you want to show other updates as the updates are going on, you will need to use a similar approach. The setTimeout give the browser an opportunity to do "other stuff" - like paint the screen with your message. Paul.