PDA

View Full Version : Creating a button to select everything in a text area.


krates
10-12-2007, 12:34 PM
Here is a simple script sometimes you want to highlight verything in a text field so that the user can copy it or something.
script goes here


<form>
<center>
<input type=button value=”Highlight All” onClick=”javascript:this.form.textarea.focus();thi s.form.textarea.select();”>
<br>
<textarea NAME=”textarea” ROWS=10 COLS=30 WRAP=VIRTUAL>
Put all the content over here.
Thanks kushagra
</textarea>
</center>
</form>



just notice one the textarea name is textarea and
javascript:this.form.textarea.focus();this.form.te xtarea.select();

Change every textarea word with the name of your text area

and for a google type by just clicking on textarea everything gets selected you can do

<form>
<center>


<textarea NAME="textarea" ROWS=10 COLS=30 WRAP=VIRTUAL onClick="javascript:this.form.textarea.focus();this.form.te xtarea.select();">

Put all the content over here.

Thanks kushagra
</textarea>
</center>
</form>

http://www.easytutorial.info/?p=22

please double check for the whitespaces by mistakes


thanks
krates

Batistabomb
10-12-2007, 12:39 PM
Good programming, also it's not mandatory to post the source for every post dear

krates
10-12-2007, 12:47 PM
he he he i am just linking to my blog and this is everything by me but i just put one link so that many users from digit came to know about my blog on which i am doing hard work :D

Batistabomb
10-12-2007, 12:50 PM
really great, you are maintaining a blog

krates
10-12-2007, 12:57 PM
Thanks this is really hectic when you ran out of tutorials :D:D

vaibhavtek
17-12-2007, 08:52 AM
nice 1.

anand1
17-12-2007, 09:11 AM
nice one