1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <script type="text/javascript">
function desactiveLink(lien){
document.getElementById(lien).onclick=function(){alert('lien desactivé');return false;}
document.getElementById(lien).style.color='grey'
}
function activeLink(lien){
document.getElementById(lien).onclick=function(){void(0);}
document.getElementById(lien).style.color='black'
}
</script>
</head>
<body>
<a href="www.google.fr" id="foo"> cliquez ici</a>
<br />
<input type="button" onclick="desactiveLink('foo')" value="desactiver" />
<input type="button" onclick="activeLink('foo')" value="activer" />
</body>
</html> |