NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Remove tabindex
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove tabindex from #colorbox preventing Select2 interaction
// @author fmm
// @match https://metcash.retailpath.com.au/*
// @license MIT
// @updateURL https://openuserjs.org/meta/fmm/Remove_tabindex.meta.js
// ==/UserScript==
(function() {
'use strict';
var colorBoxObject = document.getElementById("colorbox");
colorBoxObject.removeAttribute("tabindex");
document.styleSheets[0].insertRule('.select2-dropdown { z-index: 10000 }', 0);
})();