Selecting DIV Tag: You can use this free javascript code to select the contents of Div Tag area just by clicking a button.
Features
Just click the button below and select all the contents within Div tag.
Press control + C and copy the contents and paste it anywhere.
Downloads
<!--Script by hscripts.com--> <!-- Free javascripts @ https://www.hscripts.com --> <script type="text/javascript"> function fnSelect(objId) { fnDeSelect(); if (document.selection) { var range = document.body.createTextRange(); range.moveToElementText(document.getElementById(objId)); range.select(); } else if (window.getSelection) { var range = document.createRange(); range.selectNode(document.getElementById(objId)); window.getSelection().addRange(range); } } function fnDeSelect() { if (document.selection) document.selection.empty(); else if (window.getSelection) window.getSelection().removeAllRanges(); } </script> <!-- Script by hscripts.com -->