mediawiki-extensions-Visual.../contentEditable/ime.html

34 lines
1,003 B
HTML
Raw Normal View History

2012-02-02 23:22:23 +00:00
<!DOCTYPE html>
<html>
<head>
<script src="../modules/jquery/jquery.js"></script>
<script>
$( function() {
//console.log("start");
2012-02-02 23:22:23 +00:00
$(document).bind('DOMCharacterDataModified', function(e) {
//console.log('DOMCharacterDataModified', e);
//console.log($('div').html());
});
/*
2012-02-02 23:22:23 +00:00
$('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());
});
*/
2012-02-02 23:22:23 +00:00
} );
</script>
</head>
<body>
<div style="width: 500px; height: 200px; border: solid 1px;" contenteditable="true">Lorem ipsum</div>
2012-02-02 23:22:23 +00:00
</body>
</html>