I have a working jQuery function that creates a div when another div is clicked. When this div is clicked...
<div class='col_1' data-parent_id='parent' data-child_id='1002'>List 1</div>
this div is created using the function below and some php.
<div class='col_2' data-parent_id='1002' data-child_id='1003'>List 2</div>
jQuery
$(function() {
   $('.col_1').click(function(){  
     var parent_id = $(this).data("parent_id"); 
     var child_id = $(this).data("child_id");  
     $.post("array-2.php",{parent_id: parent_id, child_id: child_id},
       function(data){
         $('#column_2').empty();
        $('#column_2').append(data);
     });
  });
}); 
$(function() {    ////  New part:Trys to make the created div functional, 
       $('.col_2').click(function(){  
         var parent_id = $(this).data("parent_id"); 
         var child_id = $(this).data("child_id");  
         $.post("array-2.php",{parent_id: parent_id, child_id: child_id},
           function(data){
             $('#column_3').empty();
            $('#column_3').append(data);
         });
      });
    });
I want the new div to function identically as the first div to make a 3rd div/list as well (and even more created columns of lists). So I added the second half of the jQuery but it doesn't seem to function. Does anyone have any ideas why this won't work, or how I could make it better? Thanks.
You can see basically what I'm trying to do here. actual project
 
     
     
    