I am using blackboard in my university. My students will have an exam online next month.
I am trying to prevent them to use copy, paste, select, right-click during the exam. I saw a lot of solutions using javascript.
When I used onpaste and oncopy it is work. whereas, adding the onselectstart and oncontextmenu to the code not work.
Could you please help me.
Thanks
<script type="text/javascript"> document.oncopy=new Function("return false"); document.onpaste = new Function("return false"); document.onselectstart = new Function("return false"); document.oncontextmenu = new Function ("return false"); </script>
Make your HTML body tag like this-