Hi,
I created a textbox and button in .aspx page and there am hiding both controls.Wen clicking on an anchor tag these two controls need to show.For that i created a method called show()
Its like this
But its giving an error like 'Object Required'.
Pls help me.......
I created a textbox and button in .aspx page and there am hiding both controls.Wen clicking on an anchor tag these two controls need to show.For that i created a method called show()
Its like this
Code:
function show()
{
document.getElementById('txt_fpswd').style.display='inline-block';
document.getElementById('btn_ok').style.display='inline-block';
}
Pls help me.......
Comment