I want to download multiple images and videos on the browsers(chrome, Firefox and safari) of my iPhone using JavaScript. Currently my solution is working only for safari browser but I am unable to download it on other browsers of my iPhone.
My current solution is:
var link = document.createElement("a");
link.href = "path to file server";
link.download = true;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
Below are the browsers version:
1- Chrome: 81.0.4044.124
2- Firefox: 28.1
Please help me out to resolve this issue.
My current solution is:
var link = document.createElement("a");
link.href = "path to file server";
link.download = true;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
Below are the browsers version:
1- Chrome: 81.0.4044.124
2- Firefox: 28.1
Please help me out to resolve this issue.