I want to use jQuery to download a list of files to my local computer, in this kind of fashion:
$download = function(){
$("#div").find("#picture").download("C:\my_dir\");
}
I'm unsure whether or not this can be done using jQuery. I know I could load the image and allow the user to save if he wished, but can jQuery be used to automate the downloading of a bunch of files?