Hi All,
Im trying to cycle through a list of all the links on a page... I have a WebView called "myWebView" and have got this far:
Now Im after the properties InnerHTML and OuterHTML - but these properties look like they're only available in a DOMHTMLElement object....
So I have a DOMNodeList object called myList, but I want to be able to cycle through them where I can access each node as a DOMHTMLElement object, so that I can get the InnerHTML and OuterHTML properties.
Any ideas? 😕
Ive been picking my brains and searching for the past week, to no avail. Any help would be greatly appreciated!
Thanks
Im trying to cycle through a list of all the links on a page... I have a WebView called "myWebView" and have got this far:
Code:
[[[self myWebView] mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.bbc.co.uk/news/"]]];
DOMDocument *myDomDocument = [[self myWebView] mainFrameDocument];
DOMNodeList *myList = [myDomDocument getElementsByTagName:@"a"];
Now Im after the properties InnerHTML and OuterHTML - but these properties look like they're only available in a DOMHTMLElement object....
So I have a DOMNodeList object called myList, but I want to be able to cycle through them where I can access each node as a DOMHTMLElement object, so that I can get the InnerHTML and OuterHTML properties.
Any ideas? 😕
Ive been picking my brains and searching for the past week, to no avail. Any help would be greatly appreciated!
Thanks