Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a FB app that displays a fan-gated coupon for our page's fans. When you go to print the coupon, Facebook's right-hand sidebar plops itself right in the middle of the page.

I tried to print the iFrame only via javascript, but Facebook didn't like that. I'm assuming they wouldn't allow a popup either, but we wouldn't want to do a popup anyway.

Is there any other way to trick the page into being more print-friendly?

share|improve this question

1 Answer

up vote 0 down vote accepted

I've already run into similar issue to,

My solution have been to create a link bringing user out of Facebook with a print friendly code coupon. You could use <a target="_blank"> or just changing the window.top.location to your printable page.

Hope this help!

share|improve this answer
I found that by simply adding a print button inside the iFrame, the action of clicking the button brought the iframe into focus. In the case of Chrome, at least, only the element in focus is printed, so this solved it. – Ryan Nov 9 '12 at 0:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.