$('#NameDropdown').change(function(){
$.ajax({
type: "POST",
dataType: "json",
url: "http://localhost:8081/crownregency/getInfoUser.php",
data: {id: $('#NameDropdown').val(), checker: 1}, // 1 is to get user info
success:function(data){
$temp = data['Type'];
$get = $("#UserTypeDropdown option[value = '$temp']").text();
$('#UserType').attr('value', $get);
}
});
});
I have a problem with regard to placing the returned variable from ajax to the value. $get = $("#UserTypeDropdown option[value = '$temp']").text(); how do i solve this? pls help.. this question is connected to: jQuery get specific option tag text