d
Amit DhamuSoftware Engineer
 

Disable Right Click Context Menu

1 minute read 00000 views
$(document).ready(function () {
  $(document).bind('contextmenu', function (event) {
    return false
  })
})