Advertisement
pusatdata

Javascript Code for Allow Right click to textarea and textbo

Jun 22nd, 2014
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Javascript Code for Allow Right click to textarea and textbox only:
  2.  
  3. <script type = 'text/javascript'>
  4. function CheckContextMenu(e) {
  5. e = e || event;
  6.  
  7. var el = e.srcElement || e.target;
  8.  
  9. if (!(/textarea|input/i).test(el.nodeName)) {
  10. return false;
  11. }
  12. }
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement