O melhor para Blog

O melhor para Blog

Dicas, tutoriais e mais para seu blog.

Popular

terça-feira, 20 de outubro de 2020

Teste de postagem

outubro 20, 2020 0

PopCopy

This is just a little helper function to add a 'click' event listener to a DOM element that will copy any defined text to the user's clipboard. It also allows for a callback function, presumably to present the user with some sort of indication that the text was actually copied to their clipboard.

file_copy
//usage example
createCopy('Sample text to copy', 'elementId', function () {
alert('A callback function to show your text was copied successfully!');
});
Ler Mais