Home | Top | Website design | JavaScript Editor JavaScript EditorGet Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.


tagUrn Property

Sets or retrieves the Uniform Resource Name (URN) specified in the namespace declaration.

Syntax

HTML Scripting
N/A
object.tagUrn [ = sUrn ]

Possible Values

sUrn String that specifies or receives the URN in the namespace declaration, or the value in Possible Values.
null Default. Returned for standard HTML tags, or for custom tags that omit the namespace declaration.

The property is read/write. The property has a default value of null .

Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. For more information, see About Dynamic Properties .

Remarks

To declare the namespace in the document, use the XMLNS attribute of the html element.

Example

This example uses the values returned by the scopeName and tagUrn properties to create a simple HelloWorld custom tag. The browser's status bar displays the property values.

 

<HTML XMLNS:InetSDK='http://msdn.microsoft.com/workshop'>
<STYLE>
@media all { InetSDK\:HelloWorld { behavior:url (simple.htc) } }
</STYLE>
<SCRIPT>
function window.onload()
{ window.status = 'scopeName = ' + hello.scopeName + '; tagUrn = ' + hello. tagUrn ; }
</SCRIPT>
<BODY>
<InetSDK:HelloWorld ID='hello'></InetSDK:HelloWorld>
</BODY>
</HTML>

Standards Information

There is no public standard that applies to this property.

Applies To

Platform Version
Win32: 5
Unix: 5
Win16: N/A
Windows CE: N/A
Mac: N/A
 
A , ACRONYM , ADDRESS , APPLET , AREA , B , BASE , BASEFONT , BDO , BGSOUND , BIG , BLOCKQUOTE , BODY , BR , BUTTON , CAPTION , CENTER , CITE , CODE , COL , COLGROUP , COMMENT , CUSTOM , DD , DEL , DFN , DIR , DIV , DL , DT , EM , EMBED , FIELDSET , FONT , FORM , FRAME , FRAMESET , HEAD , hn , HR , HTML , I , IFRAME , IMG , INPUT type=button , INPUT type=checkbox , INPUT type=file , INPUT type=hidden , INPUT type=image , INPUT type=password , INPUT type=radio , INPUT type=reset , INPUT type=submit , INPUT type=text , INS , ISINDEX , KBD , LABEL , LEGEND , LI , LINK , LISTING , MAP , MARQUEE , MENU , nextID , NOBR , NOFRAMES , NOSCRIPT , OBJECT , OL , OPTION , P , PLAINTEXT , PRE , Q , RT , RUBY , S , SAMP , SCRIPT , SELECT , SMALL , SPAN , STRIKE , STRONG , SUB , SUP , TABLE , TBODY , TD , TEXTAREA , TFOOT , TH , THEAD , TITLE , TR , TT , U , UL , VAR , WBR , XML , XMP
Home | Top | Website design | JavaScript Editor JavaScript EditorGet Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.