Tengo un pequeno problema que no logro entender:
este script no me funciona:
Código PHP:
<html>
<head>
<script type="text/javascript">
a = document.getElementById('c').value;
function prueba(){
return alert (a);
}
</script>
</head>
<body>
<input type="text" id="c" />
<button onclick="prueba();">probar</button>
</body>
</html>
Código PHP:
<html>
<head>
<script type="text/javascript">
function prueba(){
a = document.getElementById('c').value;
return alert (a);
}
</script>
</head>
<body>
<input type="text" id="c" />
<button onclick="prueba();">probar</button>
</body>
</html>
Defino la variable como global, por lo que tendría que funcionar.
Si alguien sabe la respuesta a este pequeno enigma agradezco su ayuda.
Saludos!