msSaveOrOpenBlob method
Launches the associated application for a File or Blob.
Syntax
var retVal = navigator.msSaveOrOpenBlob(blob, defaultName);Parameters
- blob [in]
-
Type: any
- defaultName [in, optional]
-
Type: DOMString
- retVal [out, retval]
-
Type: boolean
One 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:
FalseA failure occurred.
TrueTrue 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.
See also
Show: