JavaScript DHTML/Event onMethod/onContextMenu

Материал из Web эксперт
Версия от 07:20, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"onContextMenu" Example

    
<html>
<head>
<script language="JavaScript">
    function function2() {
        alert("This image is copyrighted") 
    }
</script>
</head>
<body oncontextmenu="function2()">
    <p>Right click in the image.</p>
    <img oncontextmenu="function2()" 
         src="http://www.wbex.ru/style/logo.png" 
         alt="www.wbex.ru" 
         width="99" 
         height="76">
</body>
</html>
If you want to disable the context menu, 
add the following code to the <body>:
oncontextmenu="function2(); return false;"