 
			
				09/11/2009, 08:39
			
			
			     |  
      |    |    |    Fecha de Ingreso: abril-2009  
						Mensajes: 173
					  Antigüedad: 16 años, 6 meses Puntos: 0     |        |  
  |      Link boton no funciona explorer , en Google Chrome si        Link boton no funciona explorer , en Google Chrome si. 
CODIGO 
<script type="text/javascript"> 
$(document).ready(function(){ 
   $("#MenuBar1 a").each(function(){ 
      var href = $(this).attr("href"); 
      $(this).attr({ href: "#"}); 
      $(this).click(function(){ 
         $("#mainContent").load(href); 
      }); 
   }); 
 }); 
</script> 
MENU AHORA 
<ul id="MenuBar1" class="MenuBarHorizontal"> 
      <li><a class="MenuBarItemSubmenu">PAGINASMENU</a> 
    <ul> 
      <li><a href="pagina1.php">pagina1</a></li> 
      <li><a href="pagina2.php">pagina2</a></li> 
      <li><a href="pagina3.php">pagina3</a></li> 
      <li><a href="pagina4.php">pagina4</a></li> 
    </ul> 
  </li> 
EN INTERNET EXPLORER LE DOY A LOS BOTONES Y NO ME ABRE LAS PAGINAS Y EN GOOGLE CHROME SI ME LAS ABRE BIEN. 
QUE PUEDE SER??           |