Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. javascript:
  2. document.addEventListener('mousedown', e => {
  3. if (e.button == 2 && e.target.nodeName == 'SELECT') {
  4. window.sst = setTimeout(function() {
  5. var q = prompt('Search what?', '');
  6. if (q === '') {
  7. [].forEach.call(e.target.options, o => o.style.display = '');
  8. }
  9. else if (q != null) {
  10. [].forEach.call(e.target.options, o => o.style.display = o.textContent.toLowerCase().indexOf(q) >= 0 ? '' : 'none');
  11. }
  12. }, 300);
  13. }
  14. });
  15. document.addEventListener('mouseup', e => {
  16. clearTimeout(window.sst);
  17. });
  18. void(0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement