JavaScript Reference/Javascript Properties/codeBase
"codeBase" Example
<html>
<head>
<script language="JavaScript">
function activate() {
document.all.myObject.codebase="http://download.macromedia.ru/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0";
}
</script>
</head>
<body>
<object id="myObject" width="250" height="230">
<param name="movie" value="yourfile.swf">
<param name="quality" value="high">
<embed src="yourshockwavemovie.swf"
quality=highpluginspage=http://www.macromedia.ru/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlashtype="application/x-shockwave-flash"
width="250"
height="230">
</embed>
</object>
</body>
</html>
"codeBase" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<applet> <object> |
+----------------+--------------------------------------------------------------+
"codeBase" Syntax and Note
Note:
Read and write property.
Sets the full URL for loading the object.
Syntax:
document.getElementById("elementID").codeBase = value
document.all.elementID.codeBase = value // IE only