is it possible to get the contents of a tag from a web browser control like this: contents and then strip all HTML charact
contents
Dim divs = WebBrowser1.Document.Body.GetElementsByTagName("div") For Each d As HtmlElement In divs If d.GetAttribute("className") = "desc" Then Return d.InnerText End If Next