Tutto è molto semplice ma Copy e Paste non fungono correttamente !
Sapreste cortesemente aiutarmi !
codice:
<HTML>
<HEAD>
<TITLE></TITLE>
<SCRIPT language="JAVASCRIPT" type="text/JAVASCRIPT">
function Select() { document.send.informazioni.select(); }
</SCRIPT>
<SCRIPT language="JAVASCRIPT" type="text/JAVASCRIPT">
function Copy() {
document.send.informazioni.select();
document.execcommand("Copy");
}
</SCRIPT>
<SCRIPT language="JAVASCRIPT" type="text/JAVASCRIPT">
function Paste() { document.execcommand("Paste"); }
</SCRIPT>
<SCRIPT language="JAVASCRIPT" type="text/JAVASCRIPT">
function FAQ() {
var domanda = document.send.domanda.value;
var informazioni = document.send.informazioni.value;
if ((domanda == "") || (domanda == "undefined")) {
alert("QUESTION NOT FOUND");
document.send.domanda.focus();
}
else {
location.href = "mailto:" + "?subject=" + "&body=" + "QUESTION" + "" + domanda + "" + "INFORMAZIONI" + "" + informazioni;
}
}
</SCRIPT>
</HEAD>
<BODY bgcolor="#00009B">
<FORM name="send">
<TABLE align="center" width="50%" border="1" bgcolor="#000000" cellpadding="5">
<TR align="center">
<TD align="center"><INPUT type="text" name="domanda" size="50" value=""></TD>
</TR>
<TR align="center">
<TD align="center"><TEXTAREA name="informazioni" rows="10" cols="50" value=""></TEXTAREA></TD>
</TR>
<TR align="center">
<TD align="center" bgcolor="#999999">
<INPUT type="button" name="Select All" style="cursor:hand;font-family:Tahoma;font-size:10px;color:#000000;" value="Select All" onclick="Select()">
<INPUT type="button" name="Copy" style="cursor:hand;font-family:Tahoma;font-size:10px;color:#000000;" value="Copy" onclick="Copy();">
<INPUT type="button" name="Paste" style="cursor:hand;font-family:Tahoma;font-size:10px;color:#000000;" value="Paste" onclick="Paste();">
<INPUT type="reset" name="RESET" style="cursor:hand;font-family:Tahoma;font-size:10px;color:#000000;" value="RESET">
</TD>
</TR>
</TABLE>
</FORM>
<P align="center">[img]../immagini/submit.gif[/img]</P>
</BODY>
</HTML>
Non me ne intendo molto di JAVASCRIPT ma confido in voi !