From 547928851bc94c576a1d6de19f7f51d23079d673 Mon Sep 17 00:00:00 2001 From: Eli Grey Date: Fri, 27 Dec 2013 14:55:53 -0500 Subject: [PATCH] Fixes #56 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 49aff62..6c32c38 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,13 @@ Feature detection is possible: try { var isFileSaverSupported = !!new Blob(); } catch(e){} + +### IE < 10 + +It is possible to save HTML documents (and only HTML documents) in IE < 10 without Flash-based +polyfills. See [sudodoki's comment](https://github.com/eligrey/FileSaver.js/issues/56#issuecomment-30917476) +for more information on how to accomplish this. + Syntax ------