Aparently a disabled input is not handled by any event (am I wrong ?)
Is there a way to work arround this problem ?
<input type="text" disabled="disabled" name="test" value="test" />
$(':input').click(function () {
$(this).removeAttr('disabled');
})
Here I need to click on the input to enable it. But if I don't activate it, the input should not be posted