Re: [LA-discussions] JS : affectation de variable directement dans le onclick

[ Thread Index | Date Index | More linuxarverne.org/discussions Archives ]


Salut,

Un bout de code pourrait nous aider à t'aider ;-)

Sinon, comme disais Julien, tu peux attacher tes fonctions et événement au DOM, c'est quand même plus "propre" (et sans Jquery si tu le souhaites).
Exemple :

<script>
/**
 * Fonction à appeler lors du chargement
 */
function charger() {
   alert('Page chargée');
}

/**
 * On ajoute à l'élément "window" du DOM un événement "(on)load"qui appelle la fonction "charger()".
 */
if (window.addEventListener) {
    window.addEventListener(‘load’, charger, false);
} else { // IE
    window.attachEvent(‘onload’, charger);
}
</script>



--

Matthieu


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/