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 fondoDiv = new Image(); fondoDiv = "imagenes/menu/informacion.png"; } //MUESTRA LA IMAGEN CUANDO SE PASA POR ENCIMA EL BOTON function entra(boton) { if (document.images) { if (boton == 'btnServ') document.images[boton].src = info_on.src; } } //MUESTRA LA IMAGEN ORIGINAL function sale(boton) { if (document.images) { if (boton == 'info') document.images[boton].src = info_off.src; } } </script>
Bueno pongo el boton asi:
Código HTML:
Ver original
Bueno hasta alli todo bien, pero tengo un div donde quiero que todo el contenido de los botones salga alli como le ago?
el div esta asi:
Código HTML:
Ver original
Le puse el ejemplo de un boton, ese boton tengo como 10.
Grax si me pueden contestar y disculpen si soy muy especifico con mis ejemplos.