Status
Not open for further replies.
6 comments
ever heard of view page source?



basically add this tag to the textarea which you want to be highlighted:
Code:
id='thecode'
then use this for your select button:
Code:
<input onclick="highlight('thecode');" id='select_botton' value='Select All' tabindex='' type='submit' />
and add your own css code for the button with the id #select_button
 
If you want to rip the button? here:

Html:

<input onclick="highlight('thecode');" id='select_botton' value='Select All' tabindex='' type='submit' ./>


CSS:

#select_botton {
width:130px;
height:36px;
-moz-border-radius:4px;
-webkit-border-radius:4px;
background: url('images/bg-btn-blue.png') ;
color:#fff;
text-shadow:0 -1px 0 #39d;
padding:4px 10px 5px 5px;
font-size:11px;
margin:30px 5px 0 0;
border:1px solid #39D;
font-weight:bold;
cursor:pointer
}

Image:

http://www.imgcentre.com/img/uploads/big/c3699781ca.png
 
Status
Not open for further replies.
Back
Top