Chrome now supports the HTML spec's new download
attribute to a
elements. When used, this attribute signifies that the resource it points to should be downloaded by the browser rather than navigating to it.
From Downloading Resources:
The
download
attribute, if present, indicates that the author intends the hyperlink to be used for downloading a resource. The attribute may have a value; the value, if any, specifies the default filename that the author recommends for use in labeling the resource in a local file system. There are no restrictions on allowed values, but authors are cautioned that most file systems have limitations with regard to what punctuation is supported in file names, and user agents are likely to adjust file names accordingly.
The attribute can furthermore be given a value, to specify the filename that user agents are to use when storing the resource in a file system. This value can be overridden by the
Content-Disposition
HTTP header'sfilename
parameter.
For example, clicking the following link downloads the .png as "MyGoogleLogo.png" instead of navigating to its href
value: download me. The markup is simple:
<a href="http://www.google.com/.../logo2w.png" download="MyGoogleLogo">download me</a>
The real benefit of a[download]
will be when working with blob: URLs and filesystem: URLs URLs.
It'll give users a way to download content created/modified within your app.
Browser support: only the current Chrome dev channel release (14.0.835.15+) supports this attribute.
RSS or Atom feed and get the latest updates in your favorite feed reader!
Subscribe to our