Nicht mehr ganz neu hier
Hallo zusammen,
ich bin total am verzweifeln! Ich hab ein simples Script, welches sogar auf all meinen Smartphone Browsern funktioniert, nur nicht im IE
Weiss jemand, was ich falsch gemacht habe?
Vielen Dank schon mal im Voraus!
Bodypart:
ich bin total am verzweifeln! Ich hab ein simples Script, welches sogar auf all meinen Smartphone Browsern funktioniert, nur nicht im IE
Weiss jemand, was ich falsch gemacht habe?
Vielen Dank schon mal im Voraus!
HTML:
<script language="javascript" type="application/javascript">
<!--
function showanswer(id) {
if( document.getElementById(id).style.display == "block" ) {
document.getElementById(id).style.display = "none";
} else {
document.getElementById(id).style.display = "block";
}
}
//-->>
</script>
<style type="text/css">
#frage { width:500px; height:27px; padding-left:30px; padding-top:5px; background:url(button.png) no-repeat left;}
#antwort1 { display: none; }
</style>
Bodypart:
HTML:
<div id="frage" onClick="javascript:showanswer('antwort1');">Wenn ich drauklicke, kommt die Antwort</div>
<div id="antwort1">Da ist die Antwort :D</div>
Zuletzt bearbeitet von einem Moderator: