Questions tagged [ixmldomelement]
20 questions
0
votes
2 answers
DOMElement in Delphi
how i can use .getElementsByTagName in DOMNodeList Object ?
Like:
procedure TForm1.selecionarClick(Sender: TObject);
var DOMDocument: iXMLDOMDocument;
DOMNodeList: iXMLDOMNodeList;
DOMNode: iXMLDOMNode;
DOMElement: iXMLDOMElement;
…

XML4Parse
- 1
- 1
- 1
0
votes
1 answer
How to get child nodes from an xml url?
I got this link https://www.ncbi.nlm.nih.gov/gene/7128?report=xml&format=text. I am trying to write a code that gets Interactions and GeneOntology within Gene-commentary_heading from the link. I only succeed using this code when there are the 2 or 3…

Nemo
- 503
- 6
- 23
0
votes
1 answer
How to extend IXMLDOMElement using 'prototype'?
I have some code, which was written couple of years ago and works only in IE. I would like, to make it work with browser now.
So, code receives XML by XHR, and then reading its content. And I have a "collection" of elements. In FF it type is…

Radek Benkel
- 8,278
- 3
- 32
- 41
0
votes
1 answer
Merging a string to XML
I am actually updating a Legacy application in VB 6.0 and I need to add an element to a XML declared as IXMLDOMElement.
My XML object's content is actually as follows;
…

Nadeem_MK
- 7,533
- 7
- 50
- 61
0
votes
0 answers
Test elements to see if they are first-child or second-child with PHP
If I had this markup:
would it be possible to test, with PHP, if each of the links are the first or second-childs and then assign them classes based on that? I've…

Tom Oakley
- 6,065
- 11
- 44
- 73