My requirement is to uncheck the checkbox if the textbox value is greater than 0. But it is unchecking after two key downs. I cant identify the error... Please someone help me.
$('#'+QID+' TABLE TBODY TR').find("input[type='text']").live('keydown',function()
{
if($(this).val().length > 0)
{
$('#'+ExQID+' TABLE TBODY TR').siblings('TR').find(':checkbox').prop('checked',false)
}
});