JSFiddle - React, Tailwind, and code Playground

by Shiva meda

HTML

<h1 data-source="image/image.jpg">download Image</h1>

JavaScript

$(document).ready(function(){
	$("h1").click(function(e){
  	e.preventDefault();  //stop the browser from following
    window.location.href = $(this).attr("data-source");
   });
});