grazie funziona ..... per correttezza metto la paginetta semplice funzionante.......solo con explorer mi funziona il riquadro 150x162 e negli altri browser il testo è tutto in orizzontale per esteso . grazie ancora
codice:
<html>
<head>
<title>Scegli la sezione giusta e premy copy </title>
<meta name="generator" content="Namo WebEditor v5.0">
<SCRIPT LANGUAGE="JavaScript">
function ClipBoard()
{
holdtext.innerText = copytext.innerText;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
}
</SCRIPT>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<SPAN ID="copytext" STYLE="height:150;width:162;background-color:pink">This text will be copied onto the clipboard when you click the button below. Try it!
</SPAN><TEXTAREA ID="holdtext" STYLE="display:none;">
</TEXTAREA>
<BUTTON onClick="ClipBoard();">Copy to Clipboard</BUTTON>
</p>
</body>
</html>