//este es el q anda mostrando el resultado
function imagen(id){
$.ajax({
async:false,
type: "POST",
dataType: "html",
url:"../_php/ajax/mostrar.php",
data:"id="+id ,
success:mostrar,
error:error,
timeout:4000
});
}
function mostrar(dato){
$("#foto").remove();
$("#idFoto").html(dato);//en esta linea me muestra los resultados cuando le hago click
}