0

I need to implement a Copy to ClipBoard functionality in my screen

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>

$(document).on("click", "#inputbtn", function () {

var text = $("#comment").val();





    });

</script>
</head>
<body>

Enter Comment: <input type="text" id="comment"><br> </br>

 <input type="button" id = "inputbtn" value="Copy It ClipBoard">

</body>
</html>

Not having any idea how to continue further on this

I have seen this link

http://www.htmlgoodies.com/beyond/javascript/article.php/3458851

which isn't working in Chrome

Is this can be done without using any plugins

Thanks in advance .

Pawan
  • 28,159
  • 84
  • 232
  • 394

0 Answers0