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-
you can create a hidden file-input field and trigger() this one, when you click on your image:
$('.yourImageClass').click(function(){ $('.hiddenInputClass').trigger('click'); })