I'm using a MVC pattern implemented using IIFE. I get multiple conditional select boxes from the html and put them in the data model.
When I get a select(s) Node/Element contains also the options.
document.querySelectorAll(DOMStrings.selectDepthLevel)
Are options separate child Nodes or just and array inside the Select Node, meaning:
If I have a reference in my data model to the option can I get/modify attributes of the option without needing to go thru the parent Select Node ?