In JavaScript I want to setup an array with several strings: var List = new Array(); List[0] = "Brown"; List[1] = "Green"; Then in the DOM I want to access the List array. How can I do that? Ed
DOM = Document Object Model. If I write Browser Helper Object for Internet Explorer I can get access to the DOM. In the OnDocumentComplete method I can get the DOM object as follows: m_Document = (DispHTMLDocument)m_WebBrowser.Document; Now I want to access the List JavaScript array in the BHO. Ed