How can Access DIV Properties in Script while using Netscape 7.2

N

Nasir Wasim

How can Access DIV Properties in Script while using Netscape 7.2.
I want to use the div id with it's Visibility and left propertyin
script but it's not working :-(


Main File :
-----------

<div id="index" style="position:absolute; width:200px; height:115px;
z-index:1; left:-400px; top: 286px visibility:false;">
<object id="fl_index" type="application/x-shockwave-flash" .......>
</Object>
</div>

I wanto use index.style.left=100 in script but it's not working
Similarly i want to use index.style.visibility="Show" and it's not
working.

I have tried to use in many case like
document.getElementById('index').style.visibility="visible"; but it is
also not working in Netscape 7

Waiting for affermative responce
 
C

Cycloneous Echevarria

try this:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<title>Untitled</title>
<script language = "javascript" type = "text/javascript">

var elemLeft = 100;
var elemTop = 286;

function moveObj(obj){

var elemId = document.getElementById(obj);

elemLeft = elemLeft - 5;
elemId.style.left = elemLeft;

}

function disappear(obj){

var elemId = document.getElementById(obj);

if(elemId.style.visibility == "hidden"){

elemId.style.visibility = "visible";

} else{

elemId.style.visibility = "hidden";

}

}

</script>
<style type = "text/css">

#dIndex{

position:absolute;
width:200px;
left: 100px;
height:115px;
z-index:1;
top: 286px;
visibility:hidden;
background: gray

}

</style>

</head>

<body>
<div id="dIndex">
<p>Hello World</p>
</div>
<a href = "#" onClick = "moveObj('dIndex');return false;">Move</a> | <a
href = "#" onClick = "disappear('dIndex');return false;">Disappear</a>

</body>
</html>
 
N

Nasir Wasim

Thanks Cycloneous Echevarria
One of my problem has been solved which is to display the Div tag by
clicking through index button.
But actually there are more then one index button in main page, each
time the Top position of div tag would be changed and this is not
working :-(

I want to changed the Position of top (pixelTop) of div tag???

Waiting for ur affermative responce.
Nasir Wasim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,056
Latest member
GlycogenSupporthealth

Latest Threads

Top