Skip to content

Instantly share code, notes, and snippets.

@arn-ob
Last active April 5, 2021 08:43
Show Gist options
  • Save arn-ob/9d27651a37cb168e97ec575343bb7b64 to your computer and use it in GitHub Desktop.
Save arn-ob/9d27651a37cb168e97ec575343bb7b64 to your computer and use it in GitHub Desktop.
Download Image from Source URL
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<!-- http://localhost:5500/ -->
<!-- https://www.flightexpert.com/img/dow/ramadancalender.jpg -->
<body>
<a id="link" download></a>
<script>
$(document).ready(function () {
var a = $("<a>")
.attr("href", "ramadancalender.jpg")
.attr("download", "ramadancalender.jpg")
.appendTo("body");
a[0].click();
a.remove();
window.close()
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment