Quote:
Originally Posted by twisted Illustration
The links below each thumb of what you upload are single clickable, and autocopy into memory (I LOVE that)
|

for those wanting to add this functionality - it's great
Code:
<script language=Javascript>
function HighlightAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&©toclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Contents highlighted and copied to clipboard!"
setTimeout("window.status=''",2400);
}
}
</script>
<a href="javascript:HighlightAll('forms[0].select')">copy to clipboard</a>