How to copy to clipboard without flash in AngularJS ?
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 class="container" ng-app="mainApp">
<!-- Target -->
<input id="foo" value="I am copied from ItSolutionStuff.com">
<!-- Trigger -->
<button class="btn" 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

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- AngularJS - scroll to a specific element using anchorscroll
- AngularJS - convert comma separated string to array example
- AngularJS - How to create read more/less toggle using Directive?
- Angularjs nl2br(textarea newline and linebreak conversion) example with demo
- How to Remove HTML Tags from String in AngularJS?