Hi,
I'm trying to change most of my data entry flow to Javascript, in order to make it faster, without any JS knowledge, quite smart..
I'm using this script, which does insert values into the fields on website as it's suppose to, but the values aren't stored, meaning that if I try to go to the field and tab away, the value disappears?
function ExecuteScript() {
document.querySelectorAll('input[Id="identifier"]')[0].value="12345678";
document.querySelectorAll('input[Id="data-field-33"]')[0].value="Navn";
document.querySelectorAll('input[Id="type"]')[0].value="Trade identification number";
document.querySelectorAll('input[Id="data-field-30"]')[0].value="DK - Denmark";
}
Am I missing some kind of storing function? Thanks.