Ciao, grazie della risposta.
Non sono pratico di programmazione, comunque...
Codice:
// button which we are attaching the event to
var button = ...;
// input containing the text we want to copy
var input = ...;
button.addEventListener("click", function(event) {
event.preventDefault();
input.select(); // Select the input node's contents
var succeeded;
try {
// Copy it to the clipboard
succeeded = document.execCommand("copy");
} catch (e) {
succeeded = false;
}
if (succeeded) {
// The copy was successful!
} else {
// The copy failed :(
}
});
Dopo "var button" e "var input" cosa devo scrivere? Al posto dei puntini...
E inoltre, come lo collego alla classe "footer_mail" e quindi al testo da copiare "mia@mail.it"?
Non riesco davvero a capirlo...