Force to open “Save As…” popup open at text link click for PDF in HTML

I have some big size PDF catalogs at my website, and I need to link these as download. When I googled, I found such a thing noted below. It should open the “Save As…” popup at link click… <head> <meta name=”content-disposition” content=”inline; filename=filename.pdf”> … But it doesn’t work :/ When I link to a file … Read more

vs

In order to define charset for HTML5 Doctype, which notation should I use? Short: <meta charset=”utf-8″ /> Long: <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ /> 8 In HTML5, they are equivalent. Use the shorter one, as it is easier to remember and type. Browser support is fine since it was designed for backwards compatibility.