mw.loader.load('{{subst:localurl:{{{1}}}|action=raw&ctype=text/javascript}}');// Backlink: [[{{{1}}}]]
This templateshould always besubstituted – use{{subst:Load user script}}. |
This template is used to installuser scripts that reside on the English Wikipedia. It is to be used primarily onSpecial:MyPage/common.js orSpecial:MyPage/skin.js. It adds the necessarymw.loader.load line along with abacklink.
In order to install a user script for your Wikipedia account, add the following line toSpecial:MyPage/common.js orSpecial:MyPage/skin.js:
{{subst:lusc|script_path}}
script_path with the full .js page name of the user script to be installed.subst:), or else it won't work.{{subst:lusc|User:Example/script.js}}
mw.loader.load( '/w/index.php?title=User:Example/script.js&action=raw&ctype=text/javascript' ); // Backlink: [[User:Example/script.js]]{{subst:lusc|User:Example/script.js|User:Example/script}}
mw.loader.load( '/w/index.php?title=User:Example/script.js&action=raw&ctype=text/javascript' ); // Backlink: [[User:Example/script]]{{Install user script}} uses importScript(), and{{Load user script}} uses mw.loader.load().
importScript():
importScript('c:User:YourName/test.js');mw.loader.load():
importScript() method.