mirror of
https://github.com/zenorocha/clipboard.js.git
synced 2023-08-10 21:12:48 +03:00
29 lines
622 B
HTML
29 lines
622 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>target-div</title>
|
|
</head>
|
|
<body>
|
|
<!-- 1. Define some markup -->
|
|
<div>hello</div>
|
|
<button class="btn" data-clipboard-action="copy" data-clipboard-target="div">Copy</button>
|
|
|
|
<!-- 2. Include library -->
|
|
<script src="../dist/clipboard.min.js"></script>
|
|
|
|
<!-- 3. Instantiate clipboard -->
|
|
<script>
|
|
var clipboard = new Clipboard('.btn');
|
|
|
|
clipboard.on('success', function(e) {
|
|
console.log(e);
|
|
});
|
|
|
|
clipboard.on('error', function(e) {
|
|
console.log(e);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|