I\'m writing an application that uses the WebBrowser control to view web content that can change with AJAX that adds new content/elements.
I can\'t seem to get at the new el
You will need to use DOM for it. Cast WebBrowser.Document.DomDocument to IHTMLDocument?. You will have to import some COM interfaces or Microsoft.mshtml assembly.
Have a look to http://msdn.microsoft.com/en-us/library/aa752641(VS.85).aspx for more details.