Código PHP:
$.ajax({
url: pageUrl,
data: queryString,
type: "post",
dataType: "json",
async: false,
success: function(data){
response = data.response[0];
if(response.status == 'true') {
$("#lspAjaxPanel-periodList tr:last").after(response.html);
La propiedad response.html posee el codigo html de un tr y su respectivo contenido, cada vez que llamo a toda esta función agrega ese tr al final de la tabla.
Pero luego el selector no reconoce al ultimo tr agregado