منذ يومين وانا ابحث واجرب للوصول لحل لتحميل الردود الخاصه بتعليق على الموضوع بدون التأثير على باقي العناصر اللتي تحمل نفس اسم ال class ولم اجد الطريقة الصحيحه لاستخدام ال index مع دالة load بجانب اسم ال class الذي اريد تحميله والclass الذي اريد ان يحتوي على ما تم تحميله، إليكم الكود.

function addReplay(replay,c_id,r_index){    
$.ajax({
    url:"add.php",
    method:"POST",
    data:{
        "replay":replay,
        "c_id":c_id
    },
    beforeSend:function(){
        $(".ajax-replays").html("<div style='text-align:center;color:#2985DA'><i class='fa fa-spinner fa-2x fa-spin'></i></div>");
    },
success:function(){
    $(".ajax-replays").load(window.location.pathname + window.location.search + ' .replays');
    }
});
return false;
}

$('#add-replay').click(function(e){
    e.preventDefault();
    var replay=$(this).siblings('#the-replay').val();
    var cId=$(this).siblings('#c-id').val();
    var r_index=$(this).index('#add-replay');
    if(replay.length < 4){
        $(this).siblings('.replay-error').text("يرجى كتابة تعليقك!");
        $(this).siblings('.replay-error').fadeIn(800,function(){
            $(this).fadeOut(900)});
        $(this).siblings('#the-replay').focus();
    }
    else{
    addReplay(replay, cId, r_index);
    $(this).siblings('#the-replay').val('');
    }
});

جربت وضعه بهذه الطريقة

$(".ajax-replays")[r_index].load(window.location.pathname + window.location.search + ' .replays'[+ r_index +]'');

وجربت عدة طرق اخرى تحصلت عليها اثناء البحث لكن لا جدوى