Hello, and thank you for taking the time to read this. I have an issue where I am trying to allow the user to click on a table and automatically copy a table into the clipboard. I do this with text using IE: function clickCopyText(fi) { window.clipboardData.setData("Text",fi.innerText); } so to copy the table, I tried: function clickCopyHTML(fi) { window.clipboardData.setData("Text",fi.innerHTML); } The ...