So i have this code on my site to disable right click for computers.
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
<body oncontextmenu="return false;">
But I cant seem to get these to work for mobile devices:
.disableSave {
-webkit-user-select:none;
-webkit-touch-callout:none;
}
and
`oncontextmenu="return false;";
`