Frederico Falcao f2a6525224 init
2025-05-30 10:46:17 +01:00

18 lines
510 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.copy-pw-btn').forEach(function(btn) {
btn.addEventListener('click', function () {
var input = btn.closest('.input-group').querySelector('.pw-field');
if (input) {
navigator.clipboard.writeText(input.value).then(function() {
btn.innerHTML = '✅';
});
}
});
});
});
//
// FILE: 07_javascript.js
// Description: the javascript code that will be added to the website