The importScripts() method of the WorkerGlobalScope interface synchronously imports one or more scripts into the worker's scope.
Syntax
self.importScripts('foo.js');
self.importScripts('foo.js', 'bar.js', ...);
Parameters
A comma-separated list of DOMString objects representing the scripts to be imported.
Return value
None.
Exceptions
NetworkErroris raised if the MIME type of one of the script istext/csv,image/*,video/*, oraudio/*. It should always betext/javascript.
Example
If you had some functionality written in a separate script called foo.js that you wanted to use inside worker.js, you could import it using the following line:
importScripts('foo.js');
importScripts() and self.importScripts() are effectively equivalent — both represent importScripts() being called from inside the worker's inner scope.
Specifications
| Specification | Status | Comment |
|---|---|---|
| WHATWG HTML Living Standard The definition of 'importScripts()' in that specification. |
Living Standard |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | 4 | 3.5 (1.9.1) | (Yes) | 11.5 | 4 |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|---|
| Basic support | ? | 40 | 1.0 (1.9.1) | 1.0.1 | (Yes) | (Yes) | 5.1 |