MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
| 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. | var searchInputs = document.getElementsByName('search'); | ||
for (var i = 0; i < searchInputs.length; ++i) { searchInputs[i].id = 'searchInput'; } | for (var i = 0; i < searchInputs.length; ++i) { searchInputs[i].id = 'searchInput'; } | ||
Revision as of 11:29, 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.getElementsByName('search');
for (var i = 0; i < searchInputs.length; ++i) { searchInputs[i].id = 'searchInput'; }