To select text of an input box:

onfocus=’this.select();’

To copy to clipboard:

 

function copy_clip(datatext){
  if (window.clipboardData){
    window.clipboardData.setData("text", datatext);
    alert("copied to clipboard:\n\n" + datatext);
  } else if (window.netscape)  {
 alert ("function not available in firefox")
  }

  return false;

}

 

only windows.

Firefox don’t support copying to the clipboard