As an example
[HTML]<html>
<head>
<script type="text/javascript">
function getSize() {
var height = document.getEle mentById("image ").height;
var width = document.getEle mentById("image ").width;
alert("Height: "+height+ ", width: "+width);
}
</script>
</head>
Comment