Skip to content

Instantly share code, notes, and snippets.

@MBO
Created March 19, 2013 12:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MBO/5195694 to your computer and use it in GitHub Desktop.
Save MBO/5195694 to your computer and use it in GitHub Desktop.
Userscript for Opera, to remove autofocus in http://proline.pl shop
if (location.hostname.indexOf('proline.pl') != -1) {
window.opera.addEventListener('BeforeScript', function(e) {
e.element.text = e.element.text.replace(/\.(focus\s*\(\))/g, "/* $1 -- commented by userscript */");
}, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment