Copy to clipboard javascript not working in Mobile devices. What is the issue? – Jquery
The following code is not working on Mobile devices. But works on desktops. What is the issue here? $(document).ready(function() { copy(); }) function copy() { var txt = document.getElementById("result"); navigator.clipboard.writeText(txt.innerText); } <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <div id="result">copy text</div>