Triggering a hyperlink contained in a table cell (Resolved)
A scenario is this, a certain column in a webpage document's table contains hyperlinks, they are suppose to pop a new window, I want it that I would be able to "auto"-click those links and pop them all.....
Is there an event or property that I should wait until the loading of the window of the "auto"-clicked hyperlink is finished before "auto"-clicking the next hyperlinks?
Re: Triggering a hyperlink contained in a table cell
You could parse the HTML document find the element (the cell) you need. Get the element's hyperlink property and then navigate to that hyperlink. The effect is the same as clicking on the link.
Re: Triggering a hyperlink contained in a table cell
Darn.... Stupid me, earlier before I posted here I was trying .getElementsByTagName("href").... It is suppose to be .getElementsByTagName("a") right? :p
How about waiting until the new window is finished loading before triggering the other hyperlinks in that table? What maybe is the event or property I could check?
Re: Triggering a hyperlink contained in a table cell
The DocumentComplete event.
Re: Triggering a hyperlink contained in a table cell
Are you using Fx Dom Inspector? Its really cool for parsing. Inspects any page you have open, with a lot of flags you can set for different information.
Re: Triggering a hyperlink contained in a table cell
What is Fx Dom Inspector? Where could I get it? Is it freeware?