Hi
Here is a situation:
I have a menu code that I have used which works fine on all browsers.
The same code when I paste it on a page does not show up on IE5 for mac.
I am using this in a page which has a number of .tem files loading into it.
The src is in the same directory and this works fine independently.
Here is the code:
<html>
<head>
<script language="Javascript" type="text/javascript">
var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1
var ns6=document.getElementById&&!document.all
var ns4=document.layers
</script>
<script language="Javascript" type="text/javascript" src=http://www.webdeveloper.com/forum/archive/index.php/"function1.js">
</script>
<script language="Javascript" type="text/javascript" src="array1.js">
</script>
<style>
<!--
.menuskin{
position:absolute;
width:165px;
background-color:#f5faff;
border:1px solid black;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
visibility:hidden;
}
.menuskin a{
text-decoration:none;
color:black;
padding-left:10px;
padding-right:10px;
}
#mouseoverstyle{
background-color:highlight;
}
#mouseoverstyle a{
color:white;
}
-->
</style>
</head>
<body>
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
</div>
<a href=http://www.webdeveloper.com/forum/archive/index.php/"xyz.html" onMouseover="showmenu(event,linkset[0])" onMouseout="delayhidemenu()">Brand Stores</a><br>
</body>
</html>
thanks for the help.
Here is a situation:
I have a menu code that I have used which works fine on all browsers.
The same code when I paste it on a page does not show up on IE5 for mac.
I am using this in a page which has a number of .tem files loading into it.
The src is in the same directory and this works fine independently.
Here is the code:
<html>
<head>
<script language="Javascript" type="text/javascript">
var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1
var ns6=document.getElementById&&!document.all
var ns4=document.layers
</script>
<script language="Javascript" type="text/javascript" src=http://www.webdeveloper.com/forum/archive/index.php/"function1.js">
</script>
<script language="Javascript" type="text/javascript" src="array1.js">
</script>
<style>
<!--
.menuskin{
position:absolute;
width:165px;
background-color:#f5faff;
border:1px solid black;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
visibility:hidden;
}
.menuskin a{
text-decoration:none;
color:black;
padding-left:10px;
padding-right:10px;
}
#mouseoverstyle{
background-color:highlight;
}
#mouseoverstyle a{
color:white;
}
-->
</style>
</head>
<body>
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
</div>
<a href=http://www.webdeveloper.com/forum/archive/index.php/"xyz.html" onMouseover="showmenu(event,linkset[0])" onMouseout="delayhidemenu()">Brand Stores</a><br>
</body>
</html>
thanks for the help.