- πΊπ¦Ukraine andriic
change the value in input element and run. raw example
const input = element.querySelector('input'); input.value += 1; input.dispatchEvent(new window.Event('change', { bubbles: true })); setTimeout(() => { input.dispatchEvent(new window.Event('blur', { bubbles: true })); }, 200);