When a user clicks on image link, it should prompt save option (instead of right click and save). I found ways to alert the user if he press ctrl +s. But how do I show an save option when he click the link. Below is my code which is not working.
<script type="text/javascript">
function myFunction()
{
if (event.ctrlKey && event.keyCode == 115)
{
event.keyCode = 0;
}
}
</script>
<input type="button" onclick="myFunction()" />