Reputation: 37
$('#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
Upvotes: 1
Views: 1747
Reputation: 144659
Change this:
$get = $("#UserTypeDropdown option[value = '$temp']").text();
To:
$get = $("#UserTypeDropdown option[value='"+$temp+"']").text();
You could also use the filter
method:
$("#UserTypeDropdown option").filter(function() {
return this.value === $temp;
}).text();
Upvotes: 2
Reputation: 9660
Maybe try this:
$get = $("#UserTypeDropdown option[value = '" + $temp + "']").text();
Upvotes: 0