Go Back   Webmaster Forum > Development > Web Development > HTML and CSS
REMOVE the ads below !
Reply
 
LinkBack Thread Tools
  # 1 (permalink)
Old
Newbie
Posts: 42
Join Date: May 2007
iTrader: (0)
Location: Kanpur
Wink Create button to select everything in a text area - 12-10-2007

Here is a simple script : Which you can use to highlight everything in a text box/area
so that the user can copy it or cut it easily.

This is the code :

Code:
<form>
<center>

<input type="button" value=”Highlight All”
onClick=”javascript:this.form.textarea.focus();this.form.textarea.select();”>

<br />

<textarea name=”textarea” rows="10" cols="30" wrap="virtual">
 The text/content goes over here.
</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 effect, that by just clicking on the textarea
everything inside gets selected, you can use this code :

Code:
<form>
<center>

<textarea name=”textarea” rows="10" cols="30" wrap="virtual"
onClick=”javascript:this.form.textarea.focus();this.form.textarea.select();”>

 The text/content goes over here.

</textarea>

</center>
</form>
Source : EasyTutorial.info

Thanks,
Krates
Reply With Quote
  # 2 (permalink)
Old
Newbie
Posts: 35
Join Date: Jul 2008
iTrader: (0)
08-25-2008

Hi kushagra

It is a nice article but not so impressive.
You get it from any site so i m not giving you all the credit.


thanks
Reply With Quote
  # 3 (permalink)
Old
Newbie
Posts: 22
Join Date: Sep 2008
iTrader: (0)
1 Week Ago

where we got the content is not important. sharing is good one. its good article.
Reply With Quote
  # 4 (permalink)
Old
A Lazy Freelance Web Developer
Posts: 2,111
Join Date: Feb 2007
iTrader: (0)
Location: Bhopal (MP, India)
1 Week Ago

A good small code snippet.

Thanks for sharing.
Reply With Quote
Reply


Thread Tools



PSD to HTML

vBulletin®, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd. | SEO by vBSEO | Skin developed by vBStyles.com