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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text Box Manipulation

Status
Not open for further replies.

biglurch

Programmer
Aug 25, 2005
35
US
I have made a link of text in a tree, where i want to have the user click it and it add that text to a text box. Any Suggestions on how to do this?

This is the links:
<code>
<li><a onclick="addToList()" name="Text>Test<a></li>
</code>
This is the javascript function:
<code>
function addToList(){
search.setText(text);
}
</code>
Any help would be greatly apprecieated

Live by the code, Die by the code!!
 
you haven't given much information, so this may be wrong...

you need to create a function that references a form object:

Code:
function addToList(str) {
    document.forms['myFormName'].elements['myTextBoxName'].value = str;
}

you need to then make sure your form is something like this:

Code:
<form name="myFormName">
    <input type="text" name="myTextBoxName" />
</form>

and you need your link to be something like:

Code:
<a href="addToList(this.innerText); return false;">Add This Crazy Text</a>



*cLFlaVA
----------------------------
spinning-dollar-sign.gif
headbang.gif
spinning-dollar-sign.gif

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
Thank you i will give it a shot.

Live by the code, Die by the code!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top