MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 3: | Line 3: | ||
/* Autocompletion for the <inputbox /> extension */ | /* Autocompletion for the <inputbox /> extension */ | ||
document.getElementById('searchform').action = '/index.php'; | document.getElementById('searchform').action = '/index.php'; | ||
var searchInputs = document.getElementsByClassName(' | var searchInputs = document.getElementsByClassName('mw-ui-input'); | ||
for (var i = 0; i < searchInputs.length; ++i) { searchInputs[i].id = 'searchInput'; } | for (var i = 0; i < searchInputs.length; ++i) { searchInputs[i].id = 'searchInput'; } | ||
Latest revision as of 11:32, 12 March 2017
/* Any JavaScript here will be loaded for all users on every page load. */
/* Autocompletion for the <inputbox /> extension */
document.getElementById('searchform').action = '/index.php';
var searchInputs = document.getElementsByClassName('mw-ui-input');
for (var i = 0; i < searchInputs.length; ++i) { searchInputs[i].id = 'searchInput'; }