How to copy to clipboard without flash in AngularJS ?
In this post we will give you information about How to copy to clipboard without flash in AngularJS ?. Hear we will give you detail about How to copy to clipboard without flash in AngularJS ?And how to use it also give you demo for it if it is necessary.
In this post we are going learn how to copy to clipboard in AngularJS application using ngclipboard js plugin. I provide very simple example using CDN, so you can simply run and understand well.
when require to give function of copy some text by clicking on button or any link. There are several library can do copy text using flash player, but in this example i will do it without using flash player. In this example we will use
ngclipboard.js AngularJS Plugin for copy to clipboard.
Now i am going to share with you full example of ngclipboard js plugin. I use cdn for jquery and ngclipboard js that way you can run easily for testing. You can also see demo. So let’s see bellow example:
Example:
<!DOCTYPE html>
<html>
<head>
<title>How to copy to clipboard without flash in AngularJS ?</title>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.4.2.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
<script src="https://cdn.rawgit.com/zenorocha/clipboard.js/master/dist/clipboard.min.js"></script>
<script src="https://sachinchoolur.github.io/ngclipboard/dist/ngclipboard.min.js"></script>
</head>
<body>
<div ng-app="mainApp">
<!-- Target -->
<input id="foo" value="I am copied from ItSolutionStuff.com">
<!-- Trigger -->
<button ngclipboard data-clipboard-target="#foo">Copy to clipboard
</button>
</div>
<script type="text/javascript">
var app = angular.module("mainApp", ['ngclipboard']);
</script>
</body>
</html>
For more information you can get from here : ngclipboard.js
I hope it can help you….
Hope this code and post will helped you for implement How to copy to clipboard without flash in AngularJS ?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs