ronikuchan

jquery2

Jan 19th, 2019
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 4.93 KB | None | 0 0
  1. $(document).ready(function(){            
  2.             $(document).on('change','select[id=jenis_hewan_sel]', function(e){
  3.                 var id=$(this).val();
  4.                 $.ajax({
  5.                     url : "<?php echo base_url();?>form-regis/get_ras_hewan",
  6.                     method : "POST",
  7.                     data : {id: id},
  8.                     async : false,
  9.                     dataType : 'json',
  10.                     success: function(a){                        
  11.                         var html = '';
  12.                         for(var i=0; i<a.length; i++){                                                        
  13.                             html += '<option value='+a[i].ras_hewan_id+'>'+a[i].nama_ras_hewan+'</option>';
  14.                         }
  15.                         html1 = '<option value="0" disabled selected>Ras Hewan</option>';
  16.                         $("select[id=ras_hewan_sel]").html(html1);
  17.                         $(html).appendTo("select[id=ras_hewan_sel]");
  18.                         // $('select[id=ras_hewan_sel]').append(html);                        
  19.                     }
  20.                 });
  21.             });
  22.             // $(document).on('change','input[id=add-pet]', function(e){
  23.             //     var jml = $(this).val();
  24.             //     if(jml != ""){
  25.             //         for(var i=1;i<=jml;i++){                                                        
  26.             //         // alert('select[id=jenis_hewan_sel'+i+']');
  27.             //             $(document).on('change','select[id=jenis_hewan_sel'+i+']', function(e){
  28.             //                 var id=$(this).val();
  29.             //                 $.ajax({
  30.             //                     url : "<?php echo base_url();?>form-regis/get_ras_hewan",
  31.             //                     method : "POST",
  32.             //                     data : {id: id},
  33.             //                     async : false,
  34.             //                     dataType : 'json',
  35.             //                     success: function(a){
  36.             //                         var html = '';
  37.             //                         for(var i=0; i<a.length; i++){                                                            
  38.             //                             html += '<option value='+a[i].ras_hewan_id+'>'+a[i].nama_ras_hewan+'</option>';
  39.             //                         }    
  40.             //                         html1 = '<option value="0" disabled selected>Ras Hewan</option>';
  41.             //                         // $("select[id=ras_hewan_sel]").html(html1);
  42.             //                         $("select[id=ras_hewan_sel"+i+"]").html("");                                    
  43.             //                         for(var i=1;i<=jml;i++){
  44.             //                             $(html).appendTo("select[id=ras_hewan_sel"+i+"]");
  45.             //                             // $("select[id=ras_hewan_sel"+i+"]").html(html);
  46.             //                         }                                                                                        
  47.             //                     }
  48.             //                 });
  49.             //             });                                                
  50.             //         }
  51.             //     }
  52.             // });
  53.             $(document).on('change','input[id=add-pet]', function(e){
  54.                 var jml = $(this).val();
  55.                 if(jml != ""){
  56.                     for(var i=1;i<=jml;i++){                                                        
  57.                          $('select[id=jenis_hewan_sel'+i+']').click(function(){
  58.                             var id = $(this).val();
  59.                             $.ajax({
  60.                                 url : "<?php echo base_url();?>form-regis/get_ras_hewan",
  61.                                 method : "POST",
  62.                                 data : {id: id},
  63.                                 async : false,
  64.                                 dataType : 'json',
  65.                                 success: function(a){
  66.                                     var html = '';
  67.                                     for(var i=0; i<a.length; i++){                                                            
  68.                                         html += '<option value='+a[i].ras_hewan_id+'>'+a[i].nama_ras_hewan+'</option>';
  69.                                     }
  70.                                     $("select[id^=ras_hewan_sel"+id+"]").each(function(){
  71.                                         $("select[id^=ras_hewan_sel"+id+"]").html("");
  72.                                         $("select[id^=ras_hewan_sel"+id+"]").html(html);
  73.                                     })                                                                                
  74.                                 }
  75.                             });                            
  76.                         });                                          
  77.                     }
  78.                 }
  79.             });
Add Comment
Please, Sign In to add comment