I apologize for the simplicity of this question - I don't know much about HTML elements and I did a search on the forum first.
I just started using the _IETableWriteToArray function in some of my project and I love it because it allows me to easily grab lists and stuff them in an array. Now I am trying to do the same thing with some HTML that does not use tables. However, the HTML IDs for the sections containing the data I want to read repeat themselves throughout. Example (where "foobar" is repeated throughout):
<div id="foobar" style="width: 440px; float: left; padding-left: 10px">DATA<br>MORE DATA<br>MAORE DATA<br>MORE DATA</div>
I know that I can refer to a given element like this:
Local $element = _IEGetObjById($oIE, "foobar")
However, I am wondering what is the best way to grab the values of all the same ID elements and get them into an array? Any guidance would be appreciated.
JFish