Programme pour CHATBOT en JAVASCRIPT.
Bonjour,
Je suis confront� a un probl�me !
j'ai retrouv� un PROGRAMME en JAVASCRIPT mais ne sait pas le d�coder !!
ce programme correspond a un javascript pour l'ex�cution d'un CHABOT
Le voil� :
Y a t-il moyen de le d�crypter ligne par ligne ! SVP !
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| window.onload = function() {
document.getElementById ('input') .focus() ;
document.getElementById('sauveinput').value="";
document.getElementById('input').value="";
}
//var verif = window.setInterval(validation,10000000);
var verif = window.setInterval(validation,1800000); //toutes les 180sec
function validation()
{
document.getElementById('sauveinput').value=document.getElementById('input').value;
document.getElementById('autorefresh').value="TRUE";
document.getElementById('input').value="";
document.forms['form_parler'].submit();
}
function envoiemot(mot)
{
document.getElementById('input').value=mot;
document.forms['form_parler'].submit();
} |
Merci beaucoup de votre aide !! :mouarf:
:lahola: