Hey I am trying to create a form with multiple fields, and instead of mailing it, I want it to save to clipboard. The only thing I have now is things others tried.
Any ideas???
function copyit(){
var b = [];
b.push(el("t1").value);
b.push(el("t2").value);
b.push(el("t3").value);
b.push(el("t4").value);
var buffer = b.join(';');
CB(buffer);
Bookmarks