View difference between Paste ID: 71aRsQM1 and MWB6eNH7
SHOW: | | - or go back to the newest paste.
1
<script type="text/javascript">
2
    $(document).on('change', '#cnt_code', function() {
3
        $.ajax({
4
            url: '<?php echo base_url().$directory; ?>/get_detail_contact/',
5
            type: 'get',
6
            data: {"cnt_code" : $('#cnt_code').val()}
7
        }).done(function (data) {
8-
	console.log(data.entity);
8+
	$.each(data, function (index, value) {
9
        	console.log(value);
10
    	});        	
11
	off(); //bak test di console ape pesu?
12
            // ini nanti ngisi ke masing2 form field
13
            var obj = jQuery.parseJSON(data); // obj ini hasilnya
14
            alert(obj.cnt_first_name); // ini nggak mau muncul fieldnya, hasilnya malah undefined
15
        }).fail(function() {
16
            alert('fail');
17
        });
18
    });
19
</script>