Ver Mensaje Individual
  #5 (permalink)  
Antiguo 04/01/2011, 06:58
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 15 años, 10 meses
Puntos: 1012
Respuesta: varias opciones en un href

sí, ahora releyendo, tampoco me he entendido. me refería a esto
Cita:
<html>
<head>
<script type="text/javascript">
var valor='';
function cambiarImagen(img) {
alert(img + ' - ' + valor);
}
</script>
</head>
<body>
<a href="#" onclick="valor='1'; cambiarImagen('una imagen'); return false;">nueva imagen</a>
</body>
</html>