JavaScript Reference/Javascript Properties/hspace
"hspace" Example
<html>
<body>
<script language="JavaScript">
function function1() {
if (document.all.myButton.value == "Allow an hspace of 200px") {
document.getElementById("myImg").hspace = 200;
document.all.myButton.value = "Restore";
} else {
document.getElementById("myImg").hspace = 0;
document.all.myButton.value = "Allow an hspace of 200px";
}
}
</script>
<img id="myImg" src="yourimage.jpg" alt="" width="99" height="64">
<input id="myButton"
type="button"
value="Allow an hspace of 200px"
onclick="function1();">
</body>
</html>
"hspace" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<applet> <iframe> |
| |<img> <input> |
| |<input type="image"> <marquee> |
| |<object> |
+----------------+--------------------------------------------------------------+
"hspace" Syntax and Note
Note:
Read and write property.
Sets the space on the left and right sides of the element.
Syntax:
document.getElementById("elementID").hspace = value
document.all.elementID.hspace = value // IE only