Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] WHY would a drop down box redirection scirpt


  • From: javascript@xxxxxxxxxx (Walter Torres)
  • Subject: [Javascript] WHY would a drop down box redirection scirpt
  • Date: Wed, 26 Sep 2001 11:42:03 -0500

Anone have a clue on how I can make sure a page that is displayed in an IE
5.5 browser will *not* get added to the History list?

Thanks

Walter


> -----Original Message-----
> From: javascript-admin@xxxxxxxxxx
> [mailto:javascript-admin@xxxxxxxxxx]On
> Behalf Of staeger
> Sent: Wednesday, September 26, 2001 1:42 AM
> To: javascript@xxxxxxxxxx
> Subject: Re: [Javascript] WHY would a drop down box redirection scirpt
>
>
>
>
> "Scott.Wiseman" wrote:
>
> >
> >
> > work on one machine in the same browser
> > and not work on another
> >
> > one machine has windows 2k
> > the other windows nt.
> >
> > i.e.
> >
> > code
> >
> > <head>
> > <title>Admin Main Menu</title>
> > <meta http-equiv="Content-Type" content="text/html;
> > charset=iso-8859-1">
> > <SCRIPT LANGUAGE="JavaScript">
> > <!--
> > function reDirect(thevar)
> >  {
> >       window.location.href = thevar.value;
> > }
> > // -->
> > </SCRIPT>
>
> shouldn't it be :
>
> function reDirect(thevar)
>  {
>       window.location.href =
> thevar.options[thevar.selectedIndex].value;
>
> }
>
> greets  ben./
>