WML <anchor>  Tag



        The <anchor>...</anchor> tag pair is used to create an anchor link. It is used together with other WML elements called <go/>, <refresh> or <prev/>. These elements are called task elements and tell WAP browsers what to do when a user selects the anchor link

        You can enclose Text or image along with a task tag inside <anchor>...</anchor> tag pair.

        Attributes:

        This element supports the following attributes:

        AttributeValueDescription
        titlecdataDefines a text identifying the link
        xml:langlanguage_codeSets the language used in the element
        classclass dataSets a class name for the element.
        idelement IDA unique ID for the element.

        Example:

        Following is the example showing usage of this element.

        <?xml version="1.0"?>
        <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN"
        "http://www.wapforum.org/DTD/wml12.dtd">
        
        <wml>
        
        <card title="Anchor Element">
        <p>
           <anchor>
              <go href="nextpage.wml"/>
           </anchor>
        </p>
        <p>
           <anchor>
              <prev/>
           </anchor>
        </p>
        </card>
        
        </wml>
        

        This will produce the following result:

        WAP Example 9
        Advertisements