function edit(){ var mobile_no = document.getElementById('ddlMobileSrch').value; <pre> $.ajax({ type : "POST", url : "<?php echo site_url('index.php/customer/edit_content')?>", dataType : "JSON", data : {mobile_no:mobile_no}, success: function(data){ $.each(data.custdetails, function(i, val) { $("#ddlBillArea").val(val.billing_area_code).trigger('change'); $('[name="ddlBillArea"]').val(val.billing_area_code).trigger('change'); $("#ddlBillArea").select2("trigger", "select", { data: { id: val.billing_area_code } }); });
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)