hi everyone, i want copy button in my mobile website and i have implement it with JS, it works fine for android but on ios text not copying, is there any way to copy textarea text on ios safari ?
this is my code which worked on android browser
var input = document.getElementById("input_output"); var button = document.getElementById("copy-button"); button.addEventListener("click", function (event) { event.preventDefault(); input.select(); document.execCommand("copy"); });
Thanks