Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

We have switched hosting. Sorry for the recent downtime. :)

MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
Tags: mobile web edit mobile edit
No edit summary
Tags: mobile web edit mobile edit
Line 1: Line 1:
$(function () {
$(function () {
var myElement = document.getElementById('counter');
$('counter').html('<h1>hi</h1>');
myElement.innerHTML = '<h1>Hi</h1>';
}());
}());

Revision as of 11:43, 13 January 2021

$(function () {
	$('counter').html('<h1>hi</h1>');
}());