$.ajax({
type: "GET",
url: /myfile.exe,
success: function(datadown) {
dataup.push(datadown);
async: false,
I am creating a little download manager browser based , I know javascript is single threaded and it will not support multiple process at once . There is any way to do this in javascript (I am using Jquery)
The current method is working . It is a single threaded file download and it is slow .
I need to download the same file using multiple http connections (Just like normal download managers do )