Statistiques| Inscription| Espace privé
Développement Web
Accueil > AJAX > Un chat > Les fichiers JavaScripts
Le plan Les galeries
Dernière mise à jour :
vendredi 15 mai 2009
Contact
Webmestre
olivier ramos
ParamSPIP
Agenda
<<   Avril 2024   >>
Lu Ma Me Je Ve Sa Di
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 1 2 3 4 5



ajax3.js
 
 
 
 
//************************************************************************************************************************
//                                                  Gestionnaire d'événements
//************************************************************************************************************************

// Au chargement de la page.
window.onload=initialisation;

function initialisation() {

// Gestion du bouton "valider".  
document.getElementById("envoi3").onmouseup=function () { eclairer('envoi3'); }
document.getElementById("envoi3").onmousedown=function () { foncer('envoi3'); }
document.getElementById("envoi3").onmouseout= function () { retournormal('envoi3'); }
document.getElementById("envoi3").onmouseover=function () { eclairer('envoi3'); }
document.getElementById("envoi3").onclick=function () { fin(); }

}

function foncer(nom){
                document.getElementById(nom).style.background="#0d104a";       
                document.getElementById(nom).style.border="3px inset yellow";
                               
}


function retournormal(nom){
                document.getElementById(nom).style.background="#0d104a";                                                                                                                                 
                document.getElementById(nom).style.color="yellow";
                document.getElementById(nom).style.border="5px outset yellow";
}

function eclairer(nom){
                document.getElementById(nom).style.background="#060d85";       
                document.getElementById(nom).style.color="yellow";
                document.getElementById(nom).style.border="5px outset yellow";       
}

function fin(){
window.parent.opener.location.reload();
self.close();
}