JDMCreator / LaTeXTableEditor

readme
MIT License
137 stars 14 forks source link

copy to clipboard button #82

Closed shiva-sunar closed 11 months ago

shiva-sunar commented 1 year ago

It would be easier to copy the code, if we have the copy to clipboard button.

sammaddens commented 12 months ago

Pull request #62 implements this feature, but here is an alternative:

function copyToClipboard(stringText) {
    navigator.clipboard.writeText(stringText);
}
<button type="button" class="btn btn-success" onclick="copyToClipboard(document.getElementById('c').value);">Copy</button>
shiva-sunar commented 11 months ago

Thanks for the reply...