View Single Post
Old 2011-06-03, 09:48 AM   #23
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
I used to dup a simple page that had a few clickcopy boxes, and a list of the submission URLs & and the post URLs.

A quick search/replace of the post URLs, and fill in the boxes with the submission information was all I needed!

Here's the coding for the click boxes!
HTML Code:
<TEXTAREA class=boxtext name=title rows=2 wrap=virtual cols=50 onclick="doCopy(this)">Put title here</textarea>

<TEXTAREA class=boxtext name=desc rows=3 wrap=virtual cols=50 onclick="doCopy(this)">Put Description here</TEXTAREA>
And this is the JS script code for the click boxes!
HTML Code:
<script>

function doCopy(what){

Copied = what.createTextRange();
Copied.execCommand("Copy");

}

</script>
__________________
Latina Twins, Solo, NN, Hardcore
Latin Teen Cash

Last edited by tickler; 2011-06-03 at 09:51 AM..
tickler is offline   Reply With Quote