Question
How to write text in the clipboard in BOLD format using Javascript?
javascript:(() => {
navigator.clipboard.writeText("From : \n Info : \n Resp : ");
})();
I am trying to write predefined data in the clipboard directly in bold format whenever I click a button. Here is the code I am using to write data in plain text.
We are able to copy data in bold format & paste it in the same format in other places hence there has to be a way to write bold text directly in the clipboard but I am not able to figure out the code for this
2 68
2