HTML interesse |
|
Weet iemand wat nou beter is om uit een geframede pagina te komen.
Dit:
<script type="text/javascript">
<!--
if (top.location != self.location) {
top.location = self.location
}
//-->
</script>
<script type="text/javascript"> <!-- if (top.location != self.location) { top.location = self.location } //--> </script>
Of:
<script type="text/javascript">
<!--
if (top.location != location) {
top.location.href = location.href; }
//-->
</script>
<script type="text/javascript"> <!-- if (top.location != location) { top.location.href = location.href; } //--> </script>
Of:
<script type="text/javascript">
<!--
if (top.frames.length > 0)
{
top.location.href = location.href;
}
// -->
</script>
<script type="text/javascript"> <!-- if (top.frames.length > 0) { top.location.href = location.href; } // --> </script>
Of iets heel anders?
|