Code:
<div style="position:absolute;" id='div1'>
<script>
var normal=0;
if (normal==0) {document.getElementById('div1').style = 'background: rgb(120,120,120); opacity: 0.3; moz-opacity: 0.3;'
}
if (normal==1) {document.getElementById('div1').style = 'background: rgb(255,255,255);'}
</script>
Hallo,
ich möchte, abhängig von der Variable Normal den Div-Style verändern.
aber beide Zeilen bringen keine Änderung ... egal ob 1 oder 0.
Fehlermeldung erhalte ich auch keine.
Sieht jemand meinen Fehler?