Ver Mensaje Individual
  #15 (permalink)  
Antiguo 23/10/2012, 13:48
isabelramirezmontoya
 
Fecha de Ingreso: noviembre-2010
Mensajes: 204
Antigüedad: 14 años
Puntos: 1
Respuesta: Cambiar funcion en enlace

emprear, marlanga gracias por sus sugerencias y paciencia

Despues de revisarlo y ver sus sugerencias encontre el error y logre que me funcionara. Esto era lo que necesitaba.

Código HTML:
Ver original
  1.  
  2.  
  3. <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />
  4.  
  5. <title>Prueba</title>
  6.  
  7. <script type="text/javascript">
  8.        
  9. function boton_inicio()
  10. {
  11.     document.getElementById('boton').innerHTML="Final";
  12.     document.getElementById('boton').href = "javascript:boton_final()";
  13. }
  14.  
  15. function boton_final()
  16. {
  17.    document.getElementById('boton').innerHTML="Inicio";
  18.    document.getElementById('boton').href = "javascript:boton_inicio()";
  19. }
  20.  
  21.  
  22. </head>
  23.  
  24. <div><a id="boton" href="javascript:boton_inicio()">Inicio</a></div>
  25.  
  26. </body>
  27. </html>

Gracias