JavaScript Reference/Javascript Properties/BaseHref
"BaseHref" Example
<html>
<body>
<object id="myO"
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.ru/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
width="243"
height="194">
<param id="myP1"
name=movie
value="yourflashmovie.swf"
valuetype="ref"
type="video/*">
<param id="myP2"
value=high
name=quality>
</object>
<script language="JavaScript">
function function1() {
var m = document.all.myO.BaseHref;
alert(m);
}
</script>
<input type="button" value="The current document"s full URL" onClick="function1();">
</body>
</html>
"BaseHref" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<object> |
+----------------+--------------------------------------------------------------+
"BaseHref" Syntax and Note
Note:
Read-only property.
Returns either the full URL for the current document or
the value set by the <base> element"s href attribute.
Syntax:
document.all.objectID.BaseHref