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