You can edit / change the code and click run button
x
 
1
2
3
4
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
  <title>keypress demo</title>
6
  <style>
7
  fieldset {
8
    margin-bottom: 1em;
9
  }
10
  input {
11
    display: block;
12
  }
13
  #print-output {
14
    width: 100%;
15
  }
16
  .print-output-line {
17
    white-space: pre;
18
    padding: 15px;
19
    font-size: 25px;
20
  }
21
 div,input{color:blue;font-size:25px;}
22
label{color:green;font-size:25px;padding:10px;}
23
  </style>
24
  <script src="../../../jquery-1.10.2.js"></script>
25
<script>var clicky_site_ids = clicky_site_ids || []; clicky_site_ids.push(101319977);</script><script async src="//static.getclicky.com/js"></script>
26
27
 Here is the demo of keypress() 
28
<form>
29
  <fieldset>
30
    <label for="target">type something in the given textbox</label>
31
    <input id="target" type="text">
32
  </fieldset>
33
</form>
34
<div> </div>
35
<script type="text/javascript" src="http://www.snoopcode.com/resources/events.js"></script>
36
<script>
37
var xTriggered = 0;
38
$( "#target" ).keypress(function( event ) {
39
  if ( event.which == 13 ) {
40
   event.preventDefault();
41
  }
42
  xTriggered++;
43
  var msg = "Handler for .keypress() called " + xTriggered + " time(s).";
44
  $("div").html(msg);