Jump to content

Check existence of IE tag member


 Share

Recommended Posts

I am iterating through a list of "img" elements using _IETagNameGetCollection(). Some of them have their "class" member defined while others don't. 

So let's say I have something like below. This will crash because it hits a tag that does not have its "class" member defined. Is there a way to check for the existence of that member? IsDeclared() does not work.

Local $tags = _IETagNameGetCollection($oIE, "img")
For $tag In $tags
    if $tag.class == "blahblah" Then ;Will crash on a tag that does not have its "class" element defined. 
       D($tag.innerText)
    EndIf
Next

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...