Thanks a lot Abhay!!

Praveen.

-----Original Message-----
From: Abhay [mailto:[EMAIL PROTECTED]]
Sent: Saturday, November 25, 2000 9:03 AM
To: [EMAIL PROTECTED]
Subject: Re: Browser stop functionality


Hi Praveen,

U can do that using window.stop(). See the code below.

<html>
<script>
function doIt()
{
 window.stop();
}
function doThat()
{
 location.href="http://www.netaddress.com";
}

</script>
<body>
<form>
<input type = button  value="STOP" onClick="doIt()">
<input type = button  value="START" onClick="doThat()">
</form>
</body>
</html>



----- Original Message -----
From: PRAVEENRA <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, November 24, 2000 6:29 PM
Subject: Browser stop functionality


> Can we replicate the browser stop functionality from jsp using some
> javascript function
> or something like that.
>
> Please suggest if anybody have an idea.
>
> Thanks,
> Praveen.
>
>
___________________________________________________________________________
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
> of the message "signoff SERVLET-INTEREST".
>
> Archives: http://archives.java.sun.com/archives/servlet-interest.html
> Resources: http://java.sun.com/products/servlet/external-resources.html
> LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
>

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to