HighDots Forums  

Clear text area with button click

Javascript JavaScript language (comp.lang.javascript)


Discuss Clear text area with button click in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Targa
 
Posts: n/a

Default Clear text area with button click - 11-04-2003 , 02:38 AM






How can I clear a text field by clicking on a button?

Ive searched the web and found tons of scripts that will clear text just
entered but I am displaying results from a database into a text area field.
I need to be able to click a button and clear the field completely - not
just the text that was just entered.

BTW - There is only one field on the form so a routine that will clear an
entire form would work.

TIA




Reply With Quote
  #2  
Old   
Mikhail Esteves
 
Posts: n/a

Default Re: Clear text area with button click - 11-04-2003 , 03:26 AM






Targa, on Tue, 04 Nov 2003 01:38:54 -0600, had to say:

Quote:
How can I clear a text field by clicking on a button?
<input type="button" value="Clear"
onlick="document.formname.textareaname.value = '';">



Reply With Quote
  #3  
Old   
HikksNotAtHome
 
Posts: n/a

Default Re: Clear text area with button click - 11-04-2003 , 06:37 AM



In article <1067931532.277473 (AT) cache5 (DOT) usenetserver.com>, "Targa"
<targa1SPAMSUCKS (AT) alltel (DOT) net> writes:

Quote:
BTW - There is only one field on the form so a routine that will clear an
entire form would work.
<input type="reset" value="Clear The Form" />
--
Randy


Reply With Quote
  #4  
Old   
Thomas 'PointedEars' Lahn
 
Posts: n/a

Default Re: Clear text area with button click - 11-07-2003 , 12:51 PM



Mikhail Esteves wrote:

Quote:
Targa, on Tue, 04 Nov 2003 01:38:54 -0600, had to say:
How can I clear a text field by clicking on a button?

input type="button" value="Clear"
onlick="document.formname.textareaname.value = '';"
<input
type="button"
value="Clear"
onlick="this.form.elements['textareaname'].value = '';">


PointedEars



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.