mediawiki-extensions-Visual.../contentEditable/ime.html
2012-02-02 23:22:23 +00:00

28 lines
680 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../modules/jquery/jquery.js"></script>
<script>
$( function() {
console.log("start");
$('textarea').bind('keypress', function(e) {
console.log('keypress', e);
});
$('textarea').bind('keydown', function(e) {
console.log(e.which, e);
});
$('textarea').bind('keyup', function(e) {
console.log($('textarea').val());
});
} );
</script>
</head>
<body>
<textarea></textarea>
</body>
</html>