ajax load into ajax loaded page

ajax load into ajax loaded page

we have a page with radio button and div with id=vijegiload   (1.php) 
if click on radio we have ajax load a dropdown list and   div with id=vijegiload2  from (2.php) with echo code that load in id=vijegiload in 1.php 
now we have a dropdownlist and id=vijegiload2 that added in 1.php now how we can load another thing in id=vijegiload2 with ajax post

  1. $(document).on('change','[id^=vijegi]',function(){
  2. //radio button id=vijegi
  3. if(usr.length >= 1)
  4. {
  5. $("#vijegiload").html('<img src="loader.gif" align="absmiddle">loading');

  6.     var xhr =$.ajax({  
  7.     type: "POST",  
  8.     url: "2.php", 
  9. cache: false, 
  10.     data: "postvijegi="+ usr,  
  11.     success: function(msg){  
  12.    
  13.    $("#vijegiload").ajaxComplete(function(event, request, settings){ 
  14.    
  15.    
  16.     
  17. })
now i dont know why we can not use above code for 3.php to load data in  id=vijegiload2