Hey !!! This is himanshu on blogspot follow me
There’s many Javascript snippets available to disable right-click contextual menu, but JQuery makes things a lot easier:
$(document).ready(function(){ $(document).bind("contextmenu",function(e){ return false; });})
No comments:
Post a Comment