Hi...!
how to disable and enable the buttons in javascript after clikcing the js function?
Advance thx....!
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SenthilkumarPosted Apr 26, 2012, 4:00 AM
If you have the html page design,
In the javascript,
function EnableDisableControl()
{
//Enable
document.getElementById('btnSubmit').disabled = false;
//Disable
document.getElementById('btnSubmit').disabled = true;
return flase;
}