﻿function Posts_INICIO_Listado(){    
           
    $.ajax({
        url: 'PostsListado.aspx?INICIO=1',
        type: 'GET',
        cache: false,
        async: true,
        success: function(pHtml){
            $('#divUltimosPost').html(pHtml);            
        },
        error: function(XMLHttpRequest, textStatus, errorThrown){            
            //alert('Ha ocurrido un error al intentar cargar la lista de posts.');
        }
    });          
    
}


