»
EnglishFrenchVietnamese

Print - Dynamic Right Click Menu - JavaScriptBank.com

Full version: jsB@nk » Menu » Right click menu » Dynamic Right Click Menu
URL: https://www.javascriptbank.com/dynamic-right-click-menu.html

Dynamic Right Click Menu © JavaScriptBank.comA different script to display a custom JavaScript menu in place of the default context JavaScript menu when you right click the mouse, with this JavaScript.

Full version: jsB@nk » Menu » Right click menu » Dynamic Right Click Menu
URL: https://www.javascriptbank.com/dynamic-right-click-menu.html



CSS
<STYLE type=text/css>A.c12a {COLOR: white; FONT-STYLE: italic; FONT-WEIGHT: bold; TEXT-DECORATION: none}</STYLE><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


JavaScript
<SCRIPT language=JavaScript type=text/javascript><!--          window.document.oncontextmenu=function no(){ with(window.document){    all['tid'].style.left=event.clientX;    all['tid'].style.top=event.clientY;    document.all['tid'].filters[0].Apply();    document.all['tid'].style.visibility='visible';    document.all['tid'].filters[0].Play();} return false;}function none(){    document.all['tid'].style.visibility='hidden';} //--></SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<TABLE border=1 id=tid style="BACKGROUND-COLOR: darkred; FILTER: progid:DXImageTransform.Microsoft.Barn( motion=out,orientation=vertical); POSITION: absolute; VISIBILITY: hidden">  <TBODY>  <TR>    <TD     style="COLOR: white; FONT-SIZE: 16px; FONT-WEIGHT: bold; TEXT-ALIGN: center">DYNAMIC MENU</TD></TR>  <TR>    <TD><A class=c12a href="javascript:window.history.go(-1)"       onmouseout='this.style.backgroundColor="darkred";this.style.color="white"'       onmouseover='this.style.backgroundColor="red";this.style.color="lightyellow"'>Back<B       style="VISIBILITY: hidden">.....................</B></A></TD></TR>  <TR>    <TD><A class=c12a href="javascript:window.history.go(+1)"       onmouseout='this.style.backgroundColor="darkred";this.style.color="white"'       onmouseover='this.style.backgroundColor="red";this.style.color="lightyellow"'>Foward       <B style="VISIBILITY: hidden">................</B></A></TD></TR>  <TR>    <TD><A class=c12a href="javascript:window.history.go(0)"       onmouseout='this.style.backgroundColor="darkred";this.style.color="white"'       onmouseover='this.style.backgroundColor="red";this.style.color="lightyellow"'>Refresh<B       style="VISIBILITY: hidden">.................</B></A></TD></TR></TBODY></TABLE><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->