You probably don't want to use XHTML -- it's not yet supported by IE.
target is invalid in strict HTML too. To load in a new, named window:
Code:
onclick="open(this.href, 'window_name');"
This is equivalent to:
Code:
target="window_name"
For a frame (although you obviously can't use frames in Strict DOCTYPEs, just for reference):
Code:
onclick="frames['frame_name'].location.href = this.href;"
Then there are the special ones: _self:
Code:
onclick="location.href = this.href;"
_top:
Code:
onclick="top.location.href = this.href;"
_parent:
Code:
onclick="parent.location.href = this.href;"
Bookmarks