Objective-c, Webview
Hello, I'm trying to change the innerHTML of an DOM elemnent in a DOMDocument:
DOMDocument *myDOM = [[storyDisplay mainFrame] DOMDocument]; DOMElement *heading = [myDOM getElementById:@"heading"]; [heading setNodeValue:@"hejsa"];
Nothing seems to change when the above lines are executed, is this the right way to edit the innerHTML attribute?
Thanks, Mads Hartmann Jensen