| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 
 |  
function send_search(){
	var objxhr = xhr_connect()
	if (objxhr) {
	   affiche_masque_loader(true)
		document.getElementById('suggest').style.visibility = 'hidden'
		objxhr.onreadystatechange = function(){
			if(objxhr.readyState == 4)  {
				if (objxhr.status == 200) {
				    affiche_masque_loader(false)
					var retour = objxhr.responseXML
				}	
			}
		}
		var str = document.getElementById('saisie_search').value
		var numficheform = "numficheform=" + str + "&ch_mode=extrait"
		objxhr.open("POST" , "../action/modiffiche.php", true)
		objxhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		objxhr.send(numficheform)	
	} else {
		alert("soucis d'xmlHTTPRequest")
	}
} | 
Partager