mirror of
https://github.com/zenorocha/clipboard.js.git
synced 2023-08-10 21:12:48 +03:00
25 lines
645 B
HTML
25 lines
645 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Clipboard.js</title>
|
|
</head>
|
|
<body>
|
|
<button class="btn" data-action="copy" data-value="lorem ipsum">Copy</button>
|
|
|
|
<blockquote id="foo">Lorem ipsum dolor.</blockquote>
|
|
<button class="btn" data-action="copy" data-target="foo">Copy</button>
|
|
|
|
<input id="bar" type="text" value="qwe">
|
|
<button class="btn" data-action="cut" data-target="bar">Cut</button>
|
|
|
|
<script src="dist/clipboard.min.js"></script>
|
|
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
new Clipboard('.btn');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|