skip to main
|
skip to sidebar
The Oracle Mack
Tech Trips.
venerdì 7 marzo 2008
Disable Ctrl-N
Here is a simple way to disable CTRL-N in Javascript.
document.onkeydown = function(){
if ((event.keyCode == 78) && (event.ctrlKey)){
//alert ("No new window")
event.cancelBubble = true;
event.returnValue = false;
event.keyCode = false;
return false;
}
}
Nessun commento:
Posta un commento
Post più recente
Post più vecchio
Home page
Iscriviti a:
Commenti sul post (Atom)
techBlogSearch()
techFriends()
Bex Huff blog
Content on Content Management
Core Content Only
It's my life!
John's blog
Kyle's Blog
techTags()
Linux / Unix
(4)
Javascript / AJAX
(3)
UCM
(3)
ldap
(2)
pl/sql and sql
(2)
Database
(1)
Java
(1)
Web
(1)
fun
(1)
techArchive()
►
2015
(1)
►
agosto
(1)
►
2011
(6)
►
agosto
(1)
►
giugno
(1)
►
marzo
(1)
►
febbraio
(3)
►
2010
(2)
►
aprile
(2)
►
2009
(2)
►
ottobre
(2)
▼
2008
(7)
►
aprile
(1)
▼
marzo
(6)
LSOF: Who's doing what
Ldapsearch and LDIF files in OID
Case statement in SQL and PL/SQL
Disable Ctrl-N
No right click
JSON
Nessun commento:
Posta un commento