*si junto dos veses seguidas el sapn con las funciones mousein y out se va y ya no le da ejecuta la imagen de mouse in.
*la otra que al darle click al botón(imagen) no pasa nada
Les dejo la muestra de mu script ajax, como inserto el boton y como tengo el div.
Script AJAX
Código Javascript:
Ver original
<script language="javascript"> // FUNCION AJAX PARA LA CARGA DE LAS SECCIONES function LINK_ajax(http, div_name) { var LINK_xmlhttp = false; try { LINK_xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { LINK_xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { try { LINK_xmlhttp = new XMLHttpRequest(); } catch (e) { LINK_xmlhttp = false; }}} if (!LINK_xmlhttp) return null; //document.getElementById('load_div').style.visibility="visible"; LINK_xmlhttp.open("GET", http, true); LINK_xmlhttp.onreadystatechange = function() { if (LINK_xmlhttp.readyState == 4) { if (LINK_xmlhttp.responseText.indexOf('ALERT|') > -1) { var x = LINK_xmlhttp.responseText.indexOf('ALERT|') + "ALERT|".length; var y = LINK_xmlhttp.responseText.indexOf('|ENDALERT') - x; window.alert(LINK_xmlhttp.responseText.substr(x , y)); } else document.getElementById(div_name).innerHTML = LINK_xmlhttp.responseText + ' '; } } LINK_xmlhttp.send(null); return false; } //FUNCION DE PRE-CARGA DE IMAGENES if (document.images) { var menu = new Image(); menu.src = "imagenes/menu/menu.png"; var menu2 = new Image(); menu2.src = "imagenes/menu/menu.png"; var normas = new Image(); normas.src = "imagenes/menu/Normas1.png"; var normas2 = new Image(); normas2.src = "imagenes/menu/Normas2.png"; } //MUESTRA LA IMAGEN CUANDO SE PASA POR ENCIMA EL BOTON function entra(boton) { if (document.images) { if (boton == 'menu') document.images[boton].src = menu.src; if (boton == 'normas') document.images[boton].src = normas2.src; } } //MUESTRA LA IMAGEN ORIGINAL function sale(boton) { if (document.images) { if (boton == 'menu') document.images[boton].src = menu.src; if (boton == 'normas') document.images[boton].src = normas.src; } } </script>
Boton(imagen)
Código HTML:
Ver original
Div
Código HTML:
Ver original
Grax por adelantado y si no se entiende favor de decirme y gracias de nuevo.