how to change top

How to change the textbox top automatically just like textbox1.top="130px" Thank -vijay

1 Reply

AD Administrator Syncfusion Team June 15, 2006 05:09 AM UTC

Hi, You can change the textbox top using the following code. function Change() { document.getElementById(''TextBox1'').style.Position="relative"; document.getElementById(''TextBox1'').style.top=parseInt(130,10)+"px"; } and inside form tag, Thanx

Loader.
Up arrow icon