skip to Main Content

Javascript – Cannot copy data attribute into clipboard

I want to copy the text of a data attribute into clipboard. I took reference from this. Here is my html code:- <a class="text-info mr-2" href="javascript:void(0);" data-copy-to-clipboard="Hello World" onclick="coptToClipboard(this);"><i class="bx bx-copy me-1"></i></a> This is my javascript code:- function coptToClipboard(obj) {…

VIEW QUESTION

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>

VIEW QUESTION
Back To Top
Search