Я хочу скопировать строку, когда я нажимаю кнопку, а функция text.select () не работает со строкой.
Кто-нибудь может сказать мне, как я могу это сделать
//getting the text from local storage
let text = window.localStorage.getItem('content');//return string
//select the text
text.select();//this give the error because this only accept the HTML collection
//range
text.setSelectionRange(0, 999999999);
//copy command
document.execCommand("copy");