Possible Duplicate:
Event on a disabled input
JQuery register click event while button is disabled
I have a textbox:
<input type='text' disabled='disabled' id='textbox' value='diusabled text' />
In my javascript, I try to bind its click event:
$('#textbox').bind('click', function() { alert ('111'); });
When I click on the textbox, nothing happens, because it's disabled. What can I do in order to make this functionality work?