Sharing knowledge in Project Portfolio Innovation Management (PPIM) and various Technology.
function copy()
{
var selectedText = document.selection;
if (selectedText.type == 'Text')
var newRange = selectedText.createRange();
form1.txtTest.focus();alert(newRange.text)}else{alert('Please Select The Text');
}}