Quantcast
Channel: LeakedForums
Viewing all articles
Browse latest Browse all 3684

Prevent image [tested on mybb]

$
0
0
Prevent from right click for save & disable drag

Code:
<script>
   $(document).ready(function () {
       $('img').on('dragstart', function () {
           return false;
       });
        $('img').on('contextmenu', function () {
           return false;
       });
   });
</script>


i tested this code on mybb v1.8.19, i added to headerinclude

Viewing all articles
Browse latest Browse all 3684

Trending Articles