Only available via iframe -
is there way of making webpage available through iframe? if go directly iframe source wouldn't able see content, if view site through iframe would able see content.
a jquery or javascript solution perfect, , do have power edit source.
try adding in head of webpage
<script type="text/javascript"> if (top === self) { alert('sorry ! webpage accesible via iframe') //if current window topmost window window.close(); } else { alert('well done'); } </script>
self
means current window , top
means browser's topmost window
Comments
Post a Comment