mime-type.html 463 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <head>
  3. <title>Alpine Clipboard</title>
  4. <script src="//unpkg.com/alpinejs" defer></script>
  5. </head>
  6. <body>
  7. <button type="button" x-data x-on:click="$clipboard(document.getElementById('target').outerHTML, 'text/html')">Copy as HTML</button>
  8. <div id="target" style="background: red; width: 200px; height: 200px; color: white;">
  9. <p>Hello, world.</p>
  10. </div>
  11. <script src="../dist/alpine-clipboard.js"></script>
  12. </body>