msSaveOrOpenBlob method
Launches the associated application for a File or Blob.
Syntax
var retVal = navigator.msSaveOrOpenBlob(blob, defaultName);
Parameters
blob [in]
Type: anydefaultName [in, optional]
Type: DOMStringretVal [out, retval]
Type: booleanOne of the following:
Value Meaning False A failure occurred.
True True is returned as long as the notification bar is displayed.
Return value
Type: boolean
One of the following:
False
A failure occurred.
True
True is returned as long as the notification bar is displayed.
Remarks
When a site calls this method, the behavior is the same as when Windows Internet Explorer downloads a file with the following in the header:
Content-Length: <blob.size>
Content-Type: <blob.type>
Content-Disposition: attachment;filename=<defaultName>
This method is asynchronous and has no callbacks.