I have the generated link to the ISSUU's PDF:
then, I want to load that URL content into a DIV:
$("#inner").load('http://issuu.com/press/docs/2008-12?mode=window&printButtonEnabled=false&shareButtonEnabled=false&searchButtonEnabled=false&backgroundColor=%23222222');
the server returns 200 status (OK) but, the FireBug marks that request red:

and nothing shows inside that DIV. Why ?
Edit
It also fails if I change the request to Post:
$.post('http://issuu.com/press/docs/2008-12?mode=window&printButtonEnabled=false&shareButtonEnabled=false&searchButtonEnabled=false&backgroundColor=%23222222',{},
function(res){ $("#inner").html(res);});