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
New Participant
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
  • 817 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
Harwinder-singhAccepted solution
New Participant
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

 

New Participant
February 1, 2024

download attribute adding it is working. thank you