console.log handy function fixed

This commit is contained in:
Eduardo Lundgren 2008-05-27 02:23:57 +00:00
parent 55176967d0
commit 18ed665ae6
3 changed files with 3 additions and 3 deletions

View File

@ -3,6 +3,7 @@
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* Version: 0.1a
* Date: May, 2008
* Requires jQuery 1.2.x+
* Docs: http://docs.jquery.com/Plugins/userAction
*/

View File

@ -53,8 +53,7 @@
});*/
$('#key').keydown(function() {
alert('keydown')
//console.log('keydown')
console.log('keydown')
});
});

View File

@ -1,6 +1,6 @@
var console = console || {
log: function(l) {
$('log').append(l + '<br/>');
$('#log').append(l + '<br/>');
}
};