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

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -