<script type="text/javascript">
var prevent_bust = 0
window.onbeforeunload = function() { prevent_bust++ }
setInterval(function() {
if (prevent_bust > 0) {
prevent_bust -= 2
window.top.location = 'Your Site'
}
}, 1)
</script>
All it does is just redirects to your website once the iframe try to busts. Who can top that?
var prevent_bust = 0
window.onbeforeunload = function() { prevent_bust++ }
setInterval(function() {
if (prevent_bust > 0) {
prevent_bust -= 2
window.top.location = 'Your Site'
}
}, 1)
</script>
All it does is just redirects to your website once the iframe try to busts. Who can top that?