Hi, I’m trying with js to listen when a calendar input is updated, but so far I failed. By listening to the whole form change, I can get the updated value of the date field when another field is updated but not when the date field is updated. Here is my current code.
let formDom = document.querySelector(‘.quform-4’); let dateDom = formDom.querySelector(‘.quform-field-4_4’); formDom.addEventListener(‘change’, ()=> { console.log(dateDom.value); })