When a user clicks on an image on a web page, I'd like to trigger the browser's Save Image dialog and to let the user save the image on their hard drive. Is there a cross-browser way to do this with jQuery/Javascript?
|
|
|
|
|
|
|
Not precisely, but you can do it by hyperlinking to the img file and setting the content-type and content-disposition headers in the server response. Try, e.g., application/x-download, plus the other headers specified here. |
||||||||
|
|
|
I don't imagine so - a lot of the basic browser functionality (eg: Print Preview) isn't available to Javascript. |
||
|
|
|
|
The only thing that comes to my mind is the document.execCommand("SaveAs") of Internet Explorer, you can open a window or use a hidden iframe with the url of your image, and then call it... Check (with IE of course) this example I've done. |
||
|
|
|
|
have the same question: how to open dialog for save image by click hyperlink just using javascript (not use server code). Anyone have sollution, plz raise it for us, thaks and best regards |
||
|
|
