A
A
Andrew2022-03-16 11:03:50
JavaScript
Andrew, 2022-03-16 11:03:50

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()


In chrome, everything works as expected, but firefox for some reason decided to open files in the same tab, instead of downloading. Is there a way around this?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Adamos, 2022-03-16
@Adamos

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

A
Acid, 2022-04-23
@acid993

in the settings you need to select to download just

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question