Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HELP - how to update a section of a web page

Status
Not open for further replies.

calahans

Programmer
Jun 14, 1999
348
IE
I have a web page with three sections. I need to click on a button in the second section and from the result refresh a few text boxes within - I don't want to refresh all section. I heard you can use DHTML to do this..<br><br>How can I do this?<br><br>ANY help appreciated.. <p>Cal<br><a href=mailto: > </a><br><a href= > </a><br>
 
&lt;form name=&quot;ftest&quot;&gt;<br>&lt;input id=&quot;test&quot; name=&quot;test&quot; type=&quot;text&quot;&gt;&lt;br&gt;<br>&lt;input type=&quot;button&quot; value=&quot;click&quot; onclick=&quot;setText()&quot;&gt;<br>&lt;/form&gt;<br>&lt;script language=javascript&gt;<br>function setText(){<br>&nbsp;&nbsp;document.ftest.test.value = &quot;testing&quot;;<br>}<br>&lt;/script&gt;<br><br><br>Good luck<br>-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top