NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Kill Typeahead Search // @namespace https://openuserjs.org/scripts/ConnorBehan/Kill_Typeahead_Search // @description Removes drop down lists that try to second guess the user // @include * // @version 3 // @grant none // ==/UserScript== window.addEventListener('load', function () { var $ = unsafeWindow.jQuery; $('input[type=text]').unbind().attr('autocomplete', 'on'); $('input[type=search]').unbind().attr('autocomplete', 'on'); /* From https://en.wikipedia.org/wiki/MediaWiki:Gadget-disablesuggestions.js * Exclude wikipedia.org locally if you use this gadget. */ if (mw) { mw.loader.using( 'mediawiki.searchSuggest', function () { $('#searchInput, #powerSearchText, #searchText, .mw-searchInput').off().attr('autocomplete', 'on'); $('#simpleSearch #searchButton').attr( {'name': 'fulltext', 'value': 'Search' } ); } ); } });