Answer the question
In order to leave comments, you need to log in
How to force Firefox to download a pdf file instead of opening it?
There is such a code for downloading pdf files received from the back:
let blob = new Blob([data], { type: 'application/pdf' })
let link = document.createElement('a')
link.href = URL.createObjectURL(blob)
link.setAttribute('target', '_blank')
link.download = file_name
link.click()
Answer the question
In order to leave comments, you need to log in
It may help (or may not help, browser makers are crazy these days) setting the header for the PDF on the server
Content-Disposition: attachment
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question