So jetzt weiß ich den Grund warum Firefox die Java Script Funktionen nicht ausgeführt hat.
Firefox erwartet bei .style Angaben immer eine Einheit!!!
So:
Delphi-Quellcode:
<script type="text/javascript">
<!--
var i=30
var intHide
var speed=3
function showmenu()
{
clearInterval(intHide)
intShow=setInterval("show()",10)
}
function hidemenu()
{
clearInterval(intShow)
intHide=setInterval("hide()",10)
}
function show()
{
if (i < 182)
{
i=i+speed
document.getElementById('menu').style.left=i+"px" <===== WICHTIG!
}
}
function hide()
{
if (i>15)
{
i=i-speed
document.getElementById('menu').style.left=i+"px" <===== WICHTIG!
}
}
-->
</script>
Endlich .