Reputation: 2936
I want to open Facebook page inside iframe but does not render page when I try to just include IFrame with src
pointing to Facebook.com. Right now I am opening it inside a window but want to open it inside a frame.
Is there any way to open Facebook page in IFrame?
Upvotes: 0
Views: 13434
Reputation: 38046
Facebook, as most serious sites explicitly disallow this in order to prevent clickjacking.
One of the ways Facebook do this is by sending the 'X-frame-options:deny' header, which instructs your browser to not display the page inside an iframe.
Upvotes: 4
Reputation: 4132
Are you talking about a facebook page within your own website?
If so;
<iframe src="http://www.facebook.com"></iframe>
If not could you provide more information.
Update See below comment. It seems Facebook blocks it's pages from being includes in iframes.
Upvotes: 0