Fórum

How to disable right-click event on portlet?

Ashok BS, modificado 10 Anos atrás.

How to disable right-click event on portlet?

Junior Member Postagens: 30 Data de Entrada: 26/08/13 Postagens Recentes
Hi, is there a way to disable right click event when we do a right click on the portlet?
thumbnail
Rajeev Nair, modificado 10 Anos atrás.

RE: How to disable right-click event on portlet?

New Member Postagens: 15 Data de Entrada: 05/03/13 Postagens Recentes
Hi Ashok,

Following is the piece of javascript code that will disable mouse right click:

<script>
document.oncontextmenu = document.body.oncontextmenu = function() {return false;}
</script>

The above code will disable the mouse right click on the entire web page which would even cover your portlet.

Thanks,
Rajeev Nair
Software Engineer
www.mpowerglobal.com
Ashok BS, modificado 10 Anos atrás.

RE: How to disable right-click event on portlet?

Junior Member Postagens: 30 Data de Entrada: 26/08/13 Postagens Recentes
Thanks Rajeev. It works emoticon