Got tired of high-lighting and then copying form fields to the clipboard when posting, so...................
Add this before the form:
Code:
<script>
<!--
function doCopy(what){
Copied = what.createTextRange();
Copied.execCommand("Copy");
}
//-->
</script>
Add this to your form fields:
Code:
onclick="doCopy(this)"
So now just clicking on the form field automatically copies the field text to the clipboard.
You can send me money or girls
