I am using my page bothy as normal and as iframe link. Since i am using an iframe content within my page. if sample.html is my iframe content of my page.
How to detect the iframe(sample.html) parent is an iframe or not
Explaination:
My home page home.html contains an iframe
<iframe src="sample.html"></iframe>
i need to detect home.html (ie: parent of sample.html is an iframe or not)
Codes in sample.html
if(self==window)
{
alert('home.html is not in iframe');
}
else
{
alert('home.html is in iframe');
}
My Question is not a duplicate. Its a differnt case. Help me.
Thanks in advance
