iframe detection

by toubia95

HTML

<div id="iframe-detection">Attention, vous visitez actuellement le site de l'ENSG depuis un autre site internet. Le site officiel de l'ENSG est accessible à cette adresse : <a href="http://www.ensg.univ-lorraine.fr">www.ensg.univ-lorraine.fr</a></div>

CSS

body {
    padding: 20px;
}

#iframe-detection {
    color: white;
    background:red;
    padding: 20px;
    font-weight: bold;
    display: none;
}

#iframe-detection a {
    color: white;
}

JavaScript

// display none ou block de l'élément
document.getElementById("iframe-detection").style.display = "block";

// <body onLoad="noFrames();" >
function noFrames() {
  if (top.location != self.document.location) {
      top.location = self.document.location;
  }
}
window.onload=gt_noFrames;