Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/02/2008, 15:54
Avatar de hgp147
hgp147
 
Fecha de Ingreso: diciembre-2006
Ubicación: Buenos Aires, Argentina
Mensajes: 980
Antigüedad: 18 años, 1 mes
Puntos: 36
Re: Deshabilitar un link

Proba:

Código HTML:
<script>

function deshabilitar(valor){

var elemento = document.getElementById('check');
var hipervinculo = document.getElementById('link');

if(elemento.checked){

hipervinculo.href = valor;

}else{

hipervinculo.href = '';

}

}
</script>

<a href="Prueba.hmtl" id="link">Jala</a>
<input type="checkbox" id="check" onclick="deshabilitar('prueba.html');">