También la he probado y pasa lo mismo.
Código html:
Código:
<head>
<script type="text/javascript">window.addEventListener('load',inicia,false);</script>
</head>
Script:
Código:
function inicia(){
var elbut = document.getElementById(men1);
elbut.style.cursor = 'all-scroll';
elbut.addEventListener('click', mostrar,false);
}
function mostar(){
var elsubmen = document.getElementById(submenu1);
if(estado1 == false){
elsubmen.style.display = 'block';
estado1 = true;
}else{
elsubmen.style.display = 'none';
estado1 = false;
}