I am Getting may JSON array . But i can't know how to fill dropdown list with this array ...
<script>
function Customer_Id()
{
var Cus_id = document.getElementById("customer").value;
alert(Cus_id);
var xhr;
if (window.XMLHttpRequest) // Mozilla, Safari, ...
{
xhr = new XMLHttpRequest();
}
else if (window.ActiveXObject) // IE 8 and older
{
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
var data = "Customer_ID=" + Cus_id;
xhr.open("POST", "Volumne_WebUser.php", true);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send(data);
xhr.onreadystatechange = display_data;
function display_data() {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
var response = xhr.responseText;
var obj = JSON.parse(response);
alert(obj['Name']);
} else {
alert('There was a problem with the request.');
}
}
}
}
</script>