Advertisement
therube

Restore Context Menu / Selecting

Nov 18th, 2017
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. Restore Context Menu:
  2.  
  3. javascript:(function()%20{%20function%20R(a){ona%20=%20"on"+a;%20if(window.addEventListener)%20window.addEventListener(a,%20function%20(e)%20{%20for(var%20n=e.originalTarget;%20n;%20n=n.parentNode)%20n[ona]=null;%20},%20true);%20window[ona]=null;%20document[ona]=null;%20if(document.body)%20document.body[ona]=null;%20}%20R("contextmenu");%20R("click");%20R("mousedown");%20R("mouseup");%20})()
  4.  
  5. Restore Selecting:
  6.  
  7. javascript:(function()%20{%20function%20R(a){ona%20=%20"on"+a;%20if(window.addEventListener)%20window.addEventListener(a,%20function%20(e)%20{%20for(var%20n=e.originalTarget;%20n;%20n=n.parentNode)%20n[ona]=null;%20},%20true);%20window[ona]=null;%20document[ona]=null;%20if(document.body)%20document.body[ona]=null;%20}%20R("click");%20R("mousedown");%20R("mouseup");%20R("selectstart");%20})()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement