I am trying to bind an event to a textbox
that contains parameters. The following keep looks as if it should do it, but every time the page loads, it gets executed.
jQuery(function(){
jQuery('#textbox').bind('click', EventWithParam('param'));
});
The event gets called with that parameter every time the page loads. This may not work because events with parameters are not supported. If so, is there another route?