Hi all,
I have one of those wonderful version questions.
I have this code working in IE 5.5 using javascript to change the position value on the fly.
<script>
function functionName(){
if(statement){
divName.style.visibility="hidden"
divName.style.position="absolute"
}
else{
divName.style.visibility="visible"
divName.style.position="relative"
}
}
However when I run this in IE4 it gives me the error that "Object does not support this action"
Does anyone know a way around this. What I am looking for is a way to close the white space when the div is not visible, with out re-positioning the other contents of the page.
Thanks
Roj
I have one of those wonderful version questions.
I have this code working in IE 5.5 using javascript to change the position value on the fly.
<script>
function functionName(){
if(statement){
divName.style.visibility="hidden"
divName.style.position="absolute"
}
else{
divName.style.visibility="visible"
divName.style.position="relative"
}
}
However when I run this in IE4 it gives me the error that "Object does not support this action"
Does anyone know a way around this. What I am looking for is a way to close the white space when the div is not visible, with out re-positioning the other contents of the page.
Thanks
Roj