i cant able to get the attribute value using getbyelementid for few seconds and after that it automatically gets code example
Example: queryselector change alternative
var nome_cognome = document.querySelectorAll('.modal.fade input').forEach((input) => {
if ( input.classList.contains('.nome-cognome') ) {
input.addEventListener('keypress', () => {
console.log( input.value );
});
}
});