INSERT INTO users (firstname,email,password,role) VALUES(\'dsfsd\',\'dd@dd.com\',\'$2b$10$G/oPJekdPEJKMy0m8HztTOJyJO0YsDh/0id8RLIDnk6zarPR.qvz.\',\'0)'
INSERT INTO users (firstname,email,password,role) VALUES('dsfsd', 'dd@dd.com', '$2b$10$G/oPJekdPEJKMy0m8HztTOJyJO0YsDh/0id8RLIDnk6zarPR.qvz.', '0')
stateSel.options[stateSel.options.length] = new Option(state, state);
stateSel.onchange = function () { countySel.length = 1; // remove all options bar first citySel.length = 1; // remove all options bar first if (this.selectedIndex < 1) return; // done for (var county in stateObject[this.value]) { countySel.options[countySel.options.length] = new Option(county, county); } }
//Запускать после кода свитАлерт (когда форма создана)
const input = document.querySelector('input');
input.value = someValue;