I'm trying to copy content from input field and paste in word doc. It's working for Chrome, Edge but not in Firefox. How to solve this problem copy and paste from input field to word doc using Firefox browser.
Here is my code
var selection = window.getSelection();
var splitDatas = selection.toString().replace(/,/g, ' ');
var splitData = splitDatas.split(" ");
console.log("splitData = ", splitData);