MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* 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('searchboxInput'); | |||
for (var i = 0; i < searchInputs.length; ++i) { searchInputs[i].id = 'searchInput'; } | |||
Revision as of 11:12, 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('searchboxInput');
for (var i = 0; i < searchInputs.length; ++i) { searchInputs[i].id = 'searchInput'; }