Skip to content

Instantly share code, notes, and snippets.

@Holger-Will
Last active June 20, 2017 09:55
Show Gist options
  • Save Holger-Will/d8b8546d4614f931ae0a44ca9cf75ca5 to your computer and use it in GitHub Desktop.
Save Holger-Will/d8b8546d4614f931ae0a44ca9cf75ca5 to your computer and use it in GitHub Desktop.
Collmex Searchable Select
// ==UserScript==
// @name Collmex Searchable Select
// @namespace https://klimapartner.de
// @version 1.0
// @description alle dropdows sind durchsuchbar
// @author Holger Will
// @match https://www.collmex.de/cgi-bin/cgi.exe?*
// @require http://code.jquery.com/jquery-latest.js
// @require https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.2/js/select2.min.js
// @resource select2_CSS https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.2/css/select2.min.css
// @grant GM_addStyle
// @grant GM_getResourceText
// ==/UserScript==
(function() {
'use strict';
var scss = GM_getResourceText ("select2_CSS");
GM_addStyle (scss);
$('select').select2();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment