I am trying to make an anchor element to directly download a JSON file, but it redirects to a new tab and the download does not start.
The code I am writing in HTML is given below
<a href="https://raw.githubusercontent.com/HarshNarwariya/DSA/master/Blind%2075%20Must%20Do%20Leetcode/Leetcode%2075%20Problems.json" download>Download Data</a>
Above is an example of my running code.
I need an anchor element, on which I click and the download starts, not the new tab with the view of the data.