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.

How do you make those icon apps below your timeline so that when you click on one of them it opens a new window (or the same window) and goes to an external website?

share|improve this question

2 Answers

up vote 1 down vote accepted

i don't think you can do that. But, you can make it so that when you click them, they will go to the app page as normal, and in that app page you can put a javascript code to redirect that page:

<script type="text/javascript">
top.window.location.replace('NEWLOCATION');
</script>

It will redirect the page (one which facebook is in)

share|improve this answer
I already knew that, but thanks anyway for replying, I appreciate it. – João Paulo Mar 15 '12 at 21:32

I think this is the app you might be looking for

https://www.facebook.com/iframehost?sk=app_208195102528120

share|improve this answer

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.