• Web sitemizin içeriğine ve tüm hizmetlerimize erişim sağlamak için Web sitemize kayıt olmalı ya da giriş yapmalısınız. Web sitemize üye olmak tamamen ücretsizdir.
  • Sohbetokey.com ile canlı okey oynamaya ne dersin? Hem sohbet et, hem mobil okey oyna!
  • Soru mu? Sorun mu? ''Bir Sorum Var?'' sistemimiz aktiftir. Paylaşın beraber çözüm üretelim.

JS Hot Key (ing)

Üyelik Tarihi
7 Ocak 2015
Konular
4,091
Mesajlar
4,274
MFC Puanı
40
Kod:
<script type="text/javascript">
/* JavaScripts.com http://javascripts.com
Created by: Roy Marchand | http://www.expertsrt.com */

var key1="32";
var x='';
function handler(e) {
  if (********.all) {
  var evnt = window.event; 
  x=evnt.keyCode;
  } else
    x=e.charCode;
       if (x==key1) alert("The best JavaScripts on the web are at JavaScripts.com");
       // You could do something like redirect the user to another page:
      // if (x==key1) ********.href='http://www.expertsrt.com';
    }
    if (!********.all) {
    window.captureEvents(Event.KEYPRESS);
    window.onkeypress=handler;
  } else {
  ********.onkeypress = handler;
}
</script>

Boşluk tuşuna tıklayın.
 
Üst