in my application I’ve created a page where, via javascript and checkboxes, you can download files through a form. and so far so good. the problem is that when I click on the download button nothing happens. I expected Android came out a window that asks me where to save the file, but nothing happened. place the java code I’m using:
var suffix=1;
function downloadAll(oFrm){
var oChk = oFrm.elements["file"+(suffix++)];
if (oChk){
if (oChk.checked){
location.href = oChk.value;
setTimeout(function(){downloadAll(oFrm)}, 1000);
}
else{
downloadAll(oFrm);
}
}
}
have you any suggestions?