<script language="javascript"> document.onmousedown=disableclick; status="Right Click Disabled"; Function disableclick(event) { if(event.button==2) { alert(status); return false; } } </script>
and
<body oncontextmenu="return false"> ... </body>
<script language="javascript"> document.onmousedown=disableclick; status="Right Click Disabled"; Function disableclick(event) { if(event.button==2) { alert(status); return false; } } </script>
<body oncontextmenu="return false"> ... </body>
SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = 'P'
<blink>
had an 80% duty cycle. This comes pretty close, although the real <blink>
only affects text: .blink {
animation: blink 1s steps(5, start) infinite;
-webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink {
to {
visibility: hidden;
}
}
Use in html
This is <span class="blink">blinking</span> text.