18 lines
510 B
JavaScript
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
|
|
|
|
|