Skip to content

Instantly share code, notes, and snippets.

@davglass
Created April 21, 2009 12:55
Show Gist options
  • Save davglass/99125 to your computer and use it in GitHub Desktop.
Save davglass/99125 to your computer and use it in GitHub Desktop.
(function() {
var myEditor = new YAHOO.widget.Editor('editor', {
//Config here
});
myEditor.on('editorKeyPress', function(e) {
alert(e.ev.charCode);
});
myEditor.on('editorKeyUp', function(e) {
alert(e.ev.keyCode);
});
myEditor.on('editorKeyDown', function(e) {
alert(e.ev.keyCode);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment