I am implementing the LDA algorithm of Topic Modelling in javascript as a part of a project. Upon the click of a button, the function to perform LDA is called. However since this is a very heavy task, the browser used to hang for around 15 seconds when the function was called (even the loading animated gif wasn't working while processing was taking place).
So I implemented the function as a web worker. This solves the hanging problem but now the loading animation disappears within a couple of seconds while the results are shown some 12-14 seconds after that.
Is there any way I can make the loader animate while the processing is going on ? I mean wait for the web worker to finish computing before the loading animation disappears.
The script is called asynchronously and the loader is attached to ajax events of jQuery as
$('#spinner').bind("ajaxSend", function() {
$(this).show();
}).bind("ajaxComplete", function() {
$(this).hide();
});