Hello! I'm trying to gather a few formatted details from a site for research using the IE object. I've managed to get one of them working and the loop collects each into a sheet. There's 2 other details I would like to grab along with it on each loop but I don't know how.
The first detail is also in pEle.className("zom") except I believe the tag name is pEle.getElementsByTagName("time")
The second detail is in <span class="pm"> which is directly below "zom"
I have no idea how to adjust the loops to incorporate these other 2 details.
Please help!!! 
<span class="zom">
For Each pEle In objIE.document.getElementsByTagName("span")
If pEle.className = "zom" Then
For Each aEle In pEle.getElementsByTagName("a")
Sheets("1").Range("A" & u).Value = aEle.href
u = u + 1
End If
Exit For
Next aEle
End If
Next pEle
Bookmarks