I am trying to insert following code to all my pages:
<script language="javascript">
if (top.location == self.location)
{
top.location = '../index.html'
}
</script>
When I have this page and try to run the page from IE 8 then I am being displayed a yellow bar on top of my page which asking me to allow the plugin.
No other browser (firefox/opera/chrome/safari) does this.
This is annoying to click this every time person visits page. How to disable this?
I just hope I won't have to use:
<!--[if !IE]>-->
<script language="javascript">
if (top.location == self.location)
{
top.location = '../index.html'
}
</script>
<!--<![endif]-->