Today I Learned - Rocky Kev

TIL the Download attribute in links

POSTED ON:

TAGS:

<a href="link/to/your/file" download="filename.pdf">Download</a>

Note: This only works on the same origin requests, not cross origin.

mysite.com/filename.pdf works
google.com/random-internet/filename.pdf will not work.

REF:
mdn - attr download
Stack Overflow


Related TILs

Tagged:

TIL Gmail has a 102KB size-limit for HTML

PLACEHOLDER

TIL how Error correction works in HTML

You never get an 'Invalid Syntax' error on an HTML page. Browsers fix any invalid content and go on.

TIL what DOCTYPE means

tl;dr: DOCTYPE declaration in the first line of the HTML file, to instruct the browser to run the code in Standard mode.