Skip to content

Instantly share code, notes, and snippets.

View ctroncoso's full-sized avatar

Carlos Troncoso ctroncoso

View GitHub Profile
document.onkeypress=Keypress
function Keypress(e){
var KeyID = (window.event) ? event.keyCode : e.keyCode;
switch(KeyID)
{
case(109):
subeEbUno();
break;
<html>
<head>
<script src="jquery-1.4.4.min.js" type="text/javascript"> </script>
<script>
var timer;
var myObj = {
count:0,
doSomething:function(){
$("#printarea").prepend(this.count + " ");
},