AdminBSBMaterialDesign
AdminBSBMaterialDesign copied to clipboard
having issue in multiselect dropdown while using auto select value in jquery
am trying to show selected dropdown( multiple ) value from database to front end. But it is not working here.
function shopcalc(){
var routeid=document.getElementById("route").value;
$.ajax({
type : 'post',
url : '/getdays.php',
data : {routeid: routeid},
success : function(data){
// alert(data);
$('#userki').val(data);
}
});
}
sama beo
pardon