enable a textbox by verify the user using checkbox
hi to all,
i need help.
i have one textbox and one checkbox.textbox is disabled.i have to enable the textbox by verify the user using checkbox.for this i have a pop up window where user is verified.after submit this window,i have to enable textbox.
if(v == "abc")
{
document.form1.pcard.disabled=false;
document.form1.pcard.value ="";
}
else
document.form1.pcard.disabled=true;
}
this works fine after getting the value of textbox.
plz tell me, on which event i have call this function.
onfocus,onblur dosen't work due to textbos is disable.
Bookmarks