<div id="copy">text for copy</div>
<input type="text" id="paste" value="" size="15" maxlength="128">
document.getElementById("paste").value = document.getElementById("copy").innerHTML;
<div class="copy">Тут копируемый текст!!!</div>
<input type="text" size="20" value="Тут копируемый текст!!!" class="bginput">
$(".bginput").val($(".copy").text())
<div id="copy">text for copy</div> <input type="text" id="paste" value="" size="15" maxlength="128"> <input type="button" value="Скопировать" onclick="document.getElementById('paste').value = document.getElementById('copy').innerHTML;" />