how can i add new event to textbox plugin like onClickButton,onChange,onResize,..
You can add any key event handlers to the textbox by overriding the 'inputEvents' property.
$('#tt').textbox({
inputEvents:$.extend({},$.fn.textbox.defaults.inputEvents,{
keyup:function(e){
console.log('keyup')
}
})
})