The DOMProcessingInstruction object represents the processing instructions for an XML document.
The DOMProcessingInstruction object inherits the properties and methods of the DOMNode object.
Instance Properties
target |
The target of this processing instruction. XML defines this as being the first token following the markup that begins the processing instruction. |
data |
The content of this processing instruction. This is from the first non white space character after the target to the character immediately preceding the ?>. |
|