0
Setting a default html download code for different images from a web site
I want to set default download html codes for different images from the inspect window (Ctrl+shift+I) in webpage.i want to add a html download option which is possible but I cannot set a default download option for different images..please help me..thanks
1 Respuesta
+ 6
You can use an iperlink:
<a id="dLink"></a>
And create a function for the download, try modifying this one, passing the image as parameter.
function saveFile() {
var Tarea = document.getElementById("Tarea").value;
var TareaBlob = new Blob([Tarea], {type:"text/plain"});
var dLink = document.getElementById("dLink");
dLink.download = document.getElementById("IfileName").value;
dLink.href = window.URL.createObjectURL(TareaBlob);
dLink.click();
}
At least coll the function for all the images.