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