diff --git a/src/jquery.uls.lcd.js b/src/jquery.uls.lcd.js index 2a737b5..1664c75 100644 --- a/src/jquery.uls.lcd.js +++ b/src/jquery.uls.lcd.js @@ -408,8 +408,8 @@ var lcd = this; if ( this.options.clickhandler ) { - this.$element.on( 'click', '.row li', function () { - lcd.options.clickhandler.call( this, $( this ).data( 'code' ) ); + this.$element.on( 'click', '.row li', function ( event ) { + lcd.options.clickhandler.call( this, $( this ).data( 'code' ), event ); } ); } }