More actions
Make the search bar on Template:Home/nav activate search. |
Simulate key press instead of using function because it doesn't work |
||
| Line 4: | Line 4: | ||
var searchInput = document.getElementById('home-search'); | var searchInput = document.getElementById('home-search'); | ||
searchInput.onclick = function() { | searchInput.onclick = function() { | ||
document. | document.dispatchEvent(new KeyboardEvent('keydown', {'key': '/'})); | ||
}; | }; | ||
Latest revision as of 14:01, 4 May 2025
/* All JavaScript here will be loaded for users of the Citizen skin */
// Make the search bar on Template:Home/nav activate search.
var searchInput = document.getElementById('home-search');
searchInput.onclick = function() {
document.dispatchEvent(new KeyboardEvent('keydown', {'key': '/'}));
};