Can anyone help me bypass the following codes?

<script type="text/javascript">
    
        if (top.location != location)
            top.location.href = document.location.href;
            
    </script>

Recommended Answers

All 5 Replies

What do you mean by 'bypass'?

if what you mean by bypass is ignore, this is how you would do it.

<script language="javascript" type="text/javascript">

/* if (top.location != location)
top.location.href = document.location.href; */

</script>

I mean that code is in my html page, but I need to find a way to prevent the browser from executing it, without changing the code itself

...why can't you change the code? I was going to say you could just put it inside a function then call that function whenever you actually do need to execute it. Like this:

<script language="javascript" type="text/javascript">
function changeLocation()
{
     if (top.location != location)
     top.location.href = document.location.href;
}
</script>

Go into your browser settings and disable JavaScript.

Or copy the html file and edit out the code in the copy.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.