| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 
 | function envoyer_adaptation_rubrique2(){
 
	    var chaine = 'texte='+(document.getElementById("ad_local_rubrique").value);
 
	    xhr = createXhrObject();
 
	    xhr.open('POST','inte_adaptation_section_local.aspx',false);
		xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		xhr.send(chaine);
		if (xhr.readyState == 4)
                   {
 
 
	                    document.getElementById("ad_local_section_ev").innerHTML = xhr.responseText;
 
	                       return false; 
                    }
		   else{
			alert("La requête n'est pas executée correctement.");
		       }
 
 return false;
 
} |