Versionsunterschiede von Git / Starter
hinzugefĂźgt:
<#
<script type="text/javascript">
//<![CDATA[
function clpSet() {
window.clipboardData.setData("Text",
document.name.text.value);
}
//]]>
</script>
...
<form name="name" action="">
<input type="hidden" name="text"
value="Dies ist der zu kopierende Text!" />
<input type="button" value="Kopieren"
onclick="clpSet();" />
</form>
#>