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 31 32 33 34 35 36 37 38 39 40
   | function AffichTypeInscription (type)
{	var xhr_object = null;
 
	if (window.ActiveXObject) // Internet Explorer
	{	xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
	}
	else if (window.XMLHttpRequest) // Firefox 
	{	xhr_object = new XMLHttpRequest();
	}
	else
	{	alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
		return;
	}
 
	if (type == 0)
	{	document.getElementById('choix_inscription').innerHTML = 'Faites votre choix';
		xhr_object.open("GET", "./accueil/inscriptions/form_empty.php", true); 
	}
	else if (type == 1)
	{	document.getElementById('choix_inscription').innerHTML = 'Rubrique des artistes';
		xhr_object.open("GET", "./accueil/inscriptions/form_inscription_artistes.php", true);
	}
	else if (type == 2)
	{	document.getElementById('choix_inscription').innerHTML = 'Rubrique des prestataires';
		xhr_object.open("GET", "./accueil/inscriptions/form_inscription_prestataires.php", true);
	}
	else
	{	document.getElementById('choix_inscription').innerHTML = 'Sélection invalide';
		xhr_object.open("GET", "./accueil/inscriptions/form_empty.php", true); 
	}
 
	xhr_object.onreadystatechange = function ()
	{	if (xhr_object.readyState == 4)
		{	document.getElementById('choix_inscription').innerHTML = xhr_object.responseText;
		}
	} 
 
	xhr_object.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	xhr_object.send();
} | 
Partager