site/script.js

5 lines
273 B
JavaScript
Raw Normal View History

2024-09-28 01:25:39 -05:00
// snippet that copies the html for my button(s)
2024-12-14 02:25:18 -06:00
function copyButton() {
navigator.clipboard.writeText ('<a href="https://synth.download"><img src="https://synth.download/assets/buttons/sneexy.svg" alt="Sneexy" title="Sneexy"></a>');
2024-09-25 20:21:07 -05:00
alert("button html copied!");
}