mirror of
https://github.com/supanadit/short-url.git
synced 2024-11-10 10:02:20 +00:00
31 lines
806 B
HTML
31 lines
806 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>constructor-selector</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<!-- 1. Define some markup -->
|
|
<button class="btn" data-clipboard-text="1">Copy</button>
|
|
<button class="btn" data-clipboard-text="2">Copy</button>
|
|
<button class="btn" data-clipboard-text="3">Copy</button>
|
|
|
|
<!-- 2. Include library -->
|
|
<script src="../dist/clipboard.min.js"></script>
|
|
|
|
<!-- 3. Instantiate clipboard by passing a string selector -->
|
|
<script>
|
|
var clipboard = new ClipboardJS('.btn');
|
|
|
|
clipboard.on('success', function(e) {
|
|
console.log(e);
|
|
});
|
|
|
|
clipboard.on('error', function(e) {
|
|
console.log(e);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|