Node.lookupPrefix(options)
Method Description |
Returns the namespace prefix associated with the specified namespace uniform resource identifier (URI). Returns
Important:
This method is not supported on Internet Explorer. |
Returns |
string |
Supported Script Types |
Client and server scripts For more information, see SuiteScript 2.x Script Types. |
Governance |
None |
Module |
|
Since |
2015.2 |
Parameters
The options parameter is a JavaScript object.
Parameter |
Type |
Required / Optional |
Description |
---|---|---|---|
|
string |
required |
Namespace URI associated the namespace prefix. |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/xml Module Script Samples.
//Add additional code
...
var prefix = parentNode[0].lookupPrefix({
namespaceURI : '*'
});
...
//Add additional code