Onclick of the link or button - How to download mp4 video into system downloads. instead of opening the video in the browser | Community
Skip to main content
Level 2
February 1, 2024
Solved

Onclick of the link or button - How to download mp4 video into system downloads. instead of opening the video in the browser

  • February 1, 2024
  • 1 reply
  • 823 views

Onclick of the link or button - How to download mp4 video into system downloads. instead of opening the video in the browser

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Harwinder-singh

@kummari_dilipku Ensure that the Content-type header has a value of 'application/octet-stream'  and Content-Disposition header has a value 'attachment' and if it is an anchor tag add a 'download' attribute in the in anchor tag.

 

https://www.w3schools.com/tags/att_a_download.asp

 

1 reply

Harwinder-singh
Community Advisor
Harwinder-singhCommunity AdvisorAccepted solution
Community Advisor
February 1, 2024

@kummari_dilipku Ensure that the Content-type header has a value of 'application/octet-stream'  and Content-Disposition header has a value 'attachment' and if it is an anchor tag add a 'download' attribute in the in anchor tag.

 

https://www.w3schools.com/tags/att_a_download.asp

 

Level 2
February 1, 2024

download attribute adding it is working. thank you