[javascript]probleme declaration d'evenement

Fermé
jelore - 15 mai 2007 à 16:23
KmiK Messages postés 24 Date d'inscription mardi 15 mai 2007 Statut Membre Dernière intervention 21 mai 2007 - 15 mai 2007 à 16:27
Bonjour,
je fais du javascript depuis peu de temps et j'ai decouvert recemment une nouvelle syntaxe pour affecter une action à un evenement.
sur les site en ligne où j'ai vu la cette syntaxe ca marche nikel mais sur mon pc rien a faire !
voila mon code :

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>

<script type="text/javascript">
window.onload = function() {
$('fade').onclick = function() {
alert("okkkkk");
};
};
</script>
</head>
<body>
<p><a href="#" id="fade">toggle fx.Opacity</a></p>
</body>
</html>

est-ce que qqun peut m'aider car je comprend pas.
merci

1 réponse

KmiK Messages postés 24 Date d'inscription mardi 15 mai 2007 Statut Membre Dernière intervention 21 mai 2007 31
15 mai 2007 à 16:27
Bonjour,

et comme ça?
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
</head>
<body>
<p><a href="#" id="fade">toggle fx.Opacity</a></p>
<script type="text/javascript">
document.getElementById('fade').onclick = function() {
alert("okkkkk");
};
</script>
</body>
</html> 


cordialement,
0