BASE XHTML Element

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

The BASE element specifies an explicit URL used to resolve links and references to external sources such as links and images. It is part of the HEAD and not the BODY of a web page. This element does not require a closing tag.

Using this Element

There are some common properties and collections that apply to all the elements of the document object model, see Common Properties, Methods and Collections for the HTML Elements in Internet Explorer Mobile.

This element can be used within a web page with attributes.

This element can be used within scripts where it will have properties, events and methods.

Attributes

The following table shows items that Internet Explorer Mobile supports.

Attribute Value Description

HREF

URL

Sets the relative baseline URL on which relative links/references are based. For example:

<html>
  <head>
    <base href="https://www.southridgevideo.com/browserweb/">
  </head>
  <body>
    <img src="images/screen.gif">
      <ahref="FULL/graphs/latest.htm">
       Click here to see the latest graph.</a>
  </body>
</html>

The SRC will resolve to https://pocketpc.com/browserweb/ images/screen.gif and the HREF will resolve to https://www.southridgevideo.com/browserweb/FULL/graphs/latest.htm.

TARGET

_blank

Causes all opening links to display in a new window.

 

_parent

Causes the immediate parent of the frame to navigate to the HREF.

 

_self

Causes all opening links to display in the same frame.

 

_top

Causes the browser to navigate the “topmost” document to the HREF.

Scripting Properties

This element has no scripting properties.

Scripting Events

This element has no associated events.

Scripting Methods

This property has no associated methods.

Requirements

Windows Mobile Pocket PC for Windows Mobile Version 5.0 and later, Smartphone for Windows Mobile Version 5.0 and later

See Also

Concepts

Internet Explorer Mobile HTML Elements