hi, everyone.!
is there any way to disable <script> in web page.
i mean when i open the web page it shows a message "Error goto home"
and redirect me to home page.
is there any way to disable this script when web page is loading and shows me the html document.

Code:
<script>
alert("Error goto home");
location.href="index.php";
</script>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" 
lang="en">
<head profile="http://****.org/xfn/11">
        <meta http-equiv="Content-Type" content="text/html; 
charset=UTF-8">
        <title>*******</title>
<script type="text/javascript" src="js/jquery.validate.pack.js"></script>
    </head>
    <body class="home blog">
    <div class="container">
      <!-- HEADER -->
......
......
.......
</body></html>
how to disable this script in web page using vb6.
Code:
<script>
alert("Error goto home");
location.href="index.php";
</script>

thanks in advance.