About This Script
Sometimes people may display your site inside a "frame" on their site in an attempt to pass the content off as theirs. Even if this is not done maliciously it can mean that the experience visitors get from your site is not what you intended. This script will mean if you site is shown inside a frame on another site it will break out of the frame and become the only page the user sees. Place this code insde it the <head> tag of your page.Code
<script>
// Frame breaker provided by http://www.top-site-list.com
if (window.top.location != window.location) {
window.top.location.replace(window.location);
}
</script>
More scripts