I'm new to javascript and web development so this is a pretty basic question (although I've searched around). I need to access a table which contains many columns one of which contains rows of people's names. In each row the id for the text which holds the person's name is setup like this
<span class="PSLONGEDITBOX" id = "MTG_INSTR$2"> JOHN DOE </span> == $0
in the next row it's it would be like this
<span class="PSLONGEDITBOX" id = "MTG_INSTR$3"> BOB DAVID </span> == $0
So in order to iterate through all elements which contain names, is there anyway I could simply iterate over all ids which contain "MTG_INSTR"? If not, how would you approach it?
Also have no idea what that == $0 at the end does