View Single Post
Old 2009-02-18, 01:04 AM   #9
tickler
If there is nobody out there, that's a lot of real estate going to waste!
 
tickler's Avatar
 
Join Date: Dec 2003
Posts: 2,177
A little shortcut page that I use. Clicking the boxes automatically copies to the clipboard.

Code:
<HTML>
<body>
<script>
function doCopy(what){
Copied = what.createTextRange();
Copied.execCommand("Copy");
}
</script>

<form name-"headform">
<table align=center border=1 >
  <tr>
  	<td align=left colspan=2>
	<TEXTAREA class=boxtext name=title rows=2 wrap=virtual cols=50 onclick="doCopy(this)">Put title here</textarea>
  	</td>
  </tr>
  <tr>
  	<td align=left colspan=2><TEXTAREA class=boxtext name=desc rows=3 wrap=virtual cols=50 onclick="doCopy(this)">Put Description here</TEXTAREA>
  	</td>
  </tr>
  <tr>
  	<td align=left>
	<input type=text name="nick" value="myNick" onclick="doCopy(this)">
  	</td>
  	<td align=left>
	<input type=text name="email" value="webmaster@mydomain.com" onclick="doCopy(this)">
  	</td>
  </tr>
</table>
</form>
</body>
</HTML>
__________________
Latina Twins, Solo, NN, Hardcore
Latin Teen Cash
tickler is offline   Reply With Quote