My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
DisableRightClick  
One-sentence summary of this page.
Updated Jan 24, 2011 by 7silentm...@gmail.com

Introduction

Disable Right-Click

Detail

<script type="text/javascript" language="javascript">
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});
</script>
Powered by Google Project Hosting