Connecting Tech Pros Worldwide Help | Site Map

a little problem

  #1  
Old July 20th, 2005, 12:23 PM
Sander de Maaijer
Guest
 
Posts: n/a
hello
i hav a little problem this is a script calles secret word when you type the
secret word you get a alert whit the text:"and this is the text of the alert
wehn you know the word"
butt i want not a alert but a forwarding to a other site can anybody help
me ?
and sorry my english is NOT good

thnx sander

<html>

<head>
<title>secret word</title>
<script language="JavaScript">
var nav=navigator.appName;
var ns=(nav.indexOf("Netscape")!=-1);

if(ns){
if(document.layers){
document.captureEvents(Event.KEYPRESS);
document.onkeypress = cheat;
}
if(document.getElementById){
document.onkeypress = cheat;
}
}
else
{document.onkeypress = cheat;}

var SpecialWord = "secret";//thist is the secret word
var SpecialLetter = 0;
var vcheat = false
function cheat(keyStroke)
{
var eventChooser = (ns)?keyStroke.which: event.keyCode;
var which = String.fromCharCode(eventChooser).toLowerCase();
if(which == SpecialWord.charAt(SpecialLetter)){
SpecialLetter++;
if (SpecialLetter == SpecialWord.length) alert("and this is the text of
the alert when you know the word")
}
else {SpecialLetter = 0;vcheat = false}

}
</script>
</head>

<body>
</body>

</html>


  #2  
Old July 20th, 2005, 12:24 PM
Stuart Palmer
Guest
 
Posts: n/a

re: a little problem


try doing a document.location="url_to_new_site"; instead of the alert.

I would suggest that JS password validation is useless too as if a browser
can read the password, a user can also get the password by viwing source,
there are pasword encoders, but also decoders for these passwords. Best to
do the validation serverside.

Anyways, hope that helps

Stu



"Sander de Maaijer" <sander.de.maaijer@hccnet.nl> wrote in message
news:bnjshg$s3s$1@news.hccnet.nl...[color=blue]
> hello
> i hav a little problem this is a script calles secret word when you type[/color]
the[color=blue]
> secret word you get a alert whit the text:"and this is the text of the[/color]
alert[color=blue]
> wehn you know the word"
> butt i want not a alert but a forwarding to a other site can anybody help
> me ?
> and sorry my english is NOT good
>
> thnx sander
>
> <html>
>
> <head>
> <title>secret word</title>
> <script language="JavaScript">
> var nav=navigator.appName;
> var ns=(nav.indexOf("Netscape")!=-1);
>
> if(ns){
> if(document.layers){
> document.captureEvents(Event.KEYPRESS);
> document.onkeypress = cheat;
> }
> if(document.getElementById){
> document.onkeypress = cheat;
> }
> }
> else
> {document.onkeypress = cheat;}
>
> var SpecialWord = "secret";//thist is the secret word
> var SpecialLetter = 0;
> var vcheat = false
> function cheat(keyStroke)
> {
> var eventChooser = (ns)?keyStroke.which: event.keyCode;
> var which = String.fromCharCode(eventChooser).toLowerCase();
> if(which == SpecialWord.charAt(SpecialLetter)){
> SpecialLetter++;
> if (SpecialLetter == SpecialWord.length) alert("and this is the text of
> the alert when you know the word")
> }
> else {SpecialLetter = 0;vcheat = false}
>
> }
> </script>
> </head>
>
> <body>
> </body>
>
> </html>
>
>[/color]


Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
little PROBLEM WITH JAVA sinzero answers 0 December 25th, 2006 07:55 PM
Little Problem Angel J. Hernández M answers 3 November 17th, 2005 03:13 PM
Little Problem Angel J. Hernández M answers 0 November 16th, 2005 11:24 AM
counting duplicate values NiQ answers 9 July 19th, 2005 11:51 AM