Not so hard... This is based on a concept put forth by big_daddy... it spits out info for each element you mouse over (ala ModIV2) #include <IE.au3> _IEErrorHandlerRegister() $oIE = _IECreate("www.google.com") $oBody = _IETagnameGetCollection($oIE, "body", 0) $oTags = _IETagNameAllGetCollection($oBody) Dim $oEvents[1] $i = 0 For $oTag in $oTags $oEvents[$i] = ObjEvent($oTag, "IE_Evt_") $i += 1 ReDim $oEvents[$i + 1] Next While True Sleep(100) WEnd Func IE_Evt_onmo