Sunday, July 11, 2010

XLink and XPointer

All text is from http://www.w3schools.com/xlink/


XLink defines a standard way of creating hyperlinks in XML documents.
XPointer allows the hyperlinks to point to more specific parts in the XML document.


XLink

In HTML, we know (and all the browsers know!) that the "a" element defines a hyperlink. However, this is not how it works with XML. In XML documents, you can use whatever element names you want - therefore it is impossible for browsers to predict what hyperlink elements will be called in XML documents.

To get access to the XLink attributes and features we must declare the XLink namespace at the top of the document.

example: 



























XPointer

If the hyperlink points to an XML document, we can add an XPointer part after the URL in the xlink:href attribute, to navigate (with an XPath expression) to a specific place in the document.

example:

No comments:

Post a Comment