Can't Focus Field on Safari Form that Is Being Read Correctly by Keyboard Maestro

I found how to set a KM variable into the java script action

var myData = document.kmvar.YearsInBusinessYEARS;

So the full javascript that’s working is

   var myData = document.kmvar.YearsInBusinessYEARS;
   document.getElementById("company_years_owned").value = myData;
2 Likes