View Single Post
Old 2006-08-04, 01:49 PM   #27
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
Those using text files might want to try something like this.
Create a little html file with some form fields, and this piece of code.

Code:
<script>
function doCopy(what){
Copied = what.createTextRange();
Copied.execCommand("Copy");
}
</script>
Put this command on the form fields.
Code:
onclick="doCopy(this)"
Clicking the field dumps the information to the clipboard so you can just paste it on the submit pages.
__________________
Latina Twins, Solo, NN, Hardcore
Latin Teen Cash
tickler is offline   Reply With Quote