Skip to content

Instantly share code, notes, and snippets.

@shamun
Created October 10, 2011 19:32
Show Gist options
  • Select an option

  • Save shamun/1276294 to your computer and use it in GitHub Desktop.

Select an option

Save shamun/1276294 to your computer and use it in GitHub Desktop.
CALL START /MIN opera/opera.exe -nocontextmenu -nokeys -nomenus
opera.js:
============
$(document).ready(function()
{
alert('test');
$('title').html("name name");
$(document).mousedown(function(event)
{
switch(event.which)
{
case 2,3:
alert("Not active");
return false;
break;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment