Ok, I'll put my code:
$("#html_contenido").load("../../jsp/comun/contenedor_operativa.html" ,function(){
$("#html_publicidad_reservar").load("../../html/pub/publicidad_reserva/publicidad_reservar_fr.html", function(){
alert($("#html_publicidad_reservar").html());
});
});
alert($("#html_publicidad_reservar").html());
The first alert shows what publicidad_reservar_fr.html() has inside, but the second alert doesn't show it, so in the webpage nothing appears inside #html_publicidad_reservar
Can anyone tell me what's wrong with this code?