Returning a Selected Value

I am trying to get a value from a selected List, without any success.

I have put this together, to see if it is possible to get the value to show up on the console.log. Any help would be appreciated!

selectedFormValue.hype.zip (11.6 KB)

Try...

var x = hypeDocument.getElementById("myBox").value;

console.log(x)
2 Likes

Worked like a charm… thank you!

1 Like