Skip to content Skip to sidebar Skip to footer

Download Attribute Not Working In Firefox But Working In Chrome

This fiddle is not working in firefox but working in chrome. I have tried using this : Click on the w3schools logo to download the image: Note: The download attribute is not su

Solution 1:

first of all in firefox, you cant mark an a element to download from another domain so an a like this wont work

    <a href="http://www.w3schools.com/images/myw3schoolsimage.jpg" download>

but this other will work on firefox

    <a href="img/book.png" download>

Firefox need to be from the same domain, so a relative url, will work fine.

:) goog luck


Post a Comment for "Download Attribute Not Working In Firefox But Working In Chrome"