In today's world, Template:Load user script has become a topic of great interest and relevance. It is a topic that has captured the attention of many people and has generated debate in different areas. In this article, we will thoroughly explore Template:Load user script and its implications in today's society. We will analyze the historical, social, cultural and scientific aspects related to Template:Load user script, with the aim of offering a complete and multifaceted vision on this topic. In addition, we will examine the possible implications and challenges that Template:Load user script presents in today's world, as well as the opportunities and solutions that may arise from its study. Through this article, it is intended to contribute to the enrichment of knowledge and understanding about Template:Load user script, and to provide an informative and reflective perspective that invites reflection and dialogue on this topic.
mw.loader.load( '{{subst:localurl:{{{1}}}|action=raw&ctype=text/javascript}}' ); // Backlink: ]
This template should always be substituted – use {{subst:Load user script}}. |
This template is used to install user scripts that reside on the English Wikipedia. It is to be used primarily on Special:MyPage/common.js or Special:MyPage/skin.js. It adds the necessary mw.loader.load line along with a backlink.
In order to install a user script for your Wikipedia account, add the following line to Special:MyPage/common.js or Special: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: ]{{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: ]{{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.