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: