Tengo el siguiente codigo:
Código HTML:
Ver original
<html> <head> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /> <script type="text/javascript"> function boton_inicio() { document.getElementById('boton').innerHTML="Final"; } function boton_final() { document.getElementById('boton').innerHTML="Inicio"; } </script> </head> <body> </body> </html>
Necesito cambiar el nombre y la funcion del enlace al oprimir el enlace
Al oprimir el enlace quiero cambiar el nombre del enlace (Inicio por Final) y la funcion (boton_inicio() por boton_final()), ya logre cambiar el nombre del enlace, pero no se como cambiar el nombre de la funcion.
Gracias