-1

My download code is not working .I know its a simple code but i'm stuck .I tried many things .but those code working perfectly ok over there but not in my web ..

Plese don't don't show an articals .I know kown to do this but it is not working now .

I'll be very great full if you edit my code ...

Please help

<html>
<body>

  <a href="/images/myw3schoolsimage.jpg" download>Achievements</a>
  
</body>
</html>
shahmir
  • 15
  • 5

3 Answers3

1

Is it maybe a typo in download?

<html>
<body>

  <a href="/images/myw3schoolsimage.jpg" download>Achievements</a>
  
</body>
</html>
Tom Bom
  • 1,589
  • 4
  • 15
  • 38
1

Check this:

href image link download on click

And try this:

<html>
<body>

  <a href="/images/myw3schoolsimage.jpg" download="myw3schoolsimage.jpg">Achievements</a>

</body>
</html>
rxdue
  • 181
  • 1
  • 11
  • it is opening perfectly not do not opening @rxdue – shahmir May 24 '20 at 00:28
  • check the url, maybe try to display it with – rxdue May 24 '20 at 00:28
  • it does but do not download it – shahmir May 24 '20 at 00:33
  • Where are you testing your code? I've tried this with Chrome and Xampp it works fine... – rxdue May 24 '20 at 00:41
  • You need to open the file from localhost using xampp or iis on windows... you can't download if you open the html file with Chrome, the file has to be load from webserver – rxdue May 24 '20 at 00:52
  • can you explain how can i do this ? – shahmir May 24 '20 at 13:06
  • [link](https://www.apachefriends.org/index.html) Download and install XAMPP, then run your code with it. @shahmir Once installed start Apache, click to explorer and open htdocs. This is the root of your local webserver, you can place your HTML file here and open in Chrome with: localhost/yourHTMLfile.html Even better you can create a folder inside htdocs like 'shahmir' and rename your HTML file in index then move it into 'shahmir'. From Chrome you can open it with: localhost/shahmir – rxdue May 24 '20 at 13:58
  • thanks what if I put this code and hope that It will work when i host it – shahmir May 24 '20 at 22:56
  • Achievements – shahmir May 24 '20 at 22:56
0

<p>Click on the image to download it:<p>
<a href="/images/myw3schoolsimage.jpg" download>
  <img src="/images/myw3schoolsimage.jpg" alt="W3Schools" width="104" height="142">
</a>

<p><b>Note:</b> The download attribute is not supported in IE or Edge (prior version 18), or in Safari (prior version 10.1).</p>
Alyona Yavorska
  • 569
  • 2
  • 14
  • 20