How to enhance wiki content with JavaScript
As a security precaution to prevent attacks against the wiki, many HTML tags and all JavaScript is disabled in regular wikitext. This means that you cannot copy Google AdSense banners, Disqus comment boxes, Facebook like buttons, or any other embeddable objects into the source code of a page. You should also never allow any HTML or JavaScript to be useable in page source code because of the severe security vulnerabilities, which include allowing an attacker to gather literally every password used by all wiki users. By using JavaScript files in the system namespace and allowed HTML in pages, it is possible to add any HTML and JavaScript to wiki pages securely.
Adding the HTML and JavaScript
Creating the script
JavaScript files can be created in the system namespace (MediaWiki:) by ending the page name with .js. An example script would be MediaWiki:YourScript.js. You will need to create a JavaScript file even if you only are using HTML because JavaScript is what adds the object to the page to bypass the filter on the wikitext.
This script will contain the HTML or JavaScript that you plan to add and identify where to place it.
Use the following JavaScript to create the script.
var newPageElement = getElementById('some-element');
newPageElement.innerHTML = 'any HTML';
When copying the script, change newPageElement
to whatever you are adding. For example, you could use facebookLike.
Also change some-element
to the HTML ID name of what you want the new object to be. For example, facebookLikeID.
To add the HTML or JavaScript, change any HTML
to whatever HTML code that you want. Be careful about double and single quotes and use JavaScript escape characters where necessary.