jquery:
Código Javascript
:
Ver original$.ajax({
type: "POST",
url: "detallelyric_masde.php",
data: {
lastmsg: ID,
OTRO_ATRIBUTO: ALGUNO
// Y asi sucesivamente
}
cache: false,
success: function(html){
$("ol#updates").append(html);
$("#more"+ID).remove();
}
y en el php lo estas recibiendo bien.