I am creating an jquery ajax application.. where i got stuck
And i uploaded the images for better understanding.
Image 1

Image 2

and below is the code what i used for retriving the fetch data
$.post("ajx_dynamic.php", {st: start1, ed: end1}, function(return_data2){
$(".main_div_class .single_div_class").last().after(html(return_data2));
});
Is the statement correct
$(".main_div_class .single_div_class").last().after(html(return_data2));
cos its not showing up the results after the last div.
I think it should be
OR