site/_includes/scripts/button.js

14 lines
531 B
JavaScript
Raw Permalink Normal View History

2025-04-09 13:51:07 -05:00
// snippet that copies the html for my button(s)
function copyButtonSneexy() {
navigator.clipboard.writeText(
'<a href="https://synth.download"><img src="https://synth.download/assets/buttons/sneexy.svg" alt="Sneexy"></a>'
);
alert("button html copied!");
}
function copyButtonSynthDownload() {
navigator.clipboard.writeText(
'<a href="https://synth.download"><img src="https://synth.download/assets/buttons/synth.download.svg" alt="Synth.Download!"></a>'
);
alert("button html copied!");
}