473,325 Members | 2,785 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,325 software developers and data experts.

Javasccript/HTML Problem

I need several things in HTML or Javascript. It canNOT be a server side
script, it is for a standalone project in HTML ONLY!

PAGE 1 is a simple blank page where there will be an on.click so that if
the screen is clicked it goes to PAGE 2. There will be a delay of 3
seconds while it says PLEASE WAIT.

PAGE 2 has a one line form (the form has a validation scheme and the OK
button will only be able to be pressed once a certain amount of digits -
11 for a phone number are inserted, only then will it work) with OK
button that goes to the next page. I need capabilities of invisible
(that means that the OK button will be invisible). The password is a
phone number which needs to show up as stars (*). A delay of 3 seconds
will route it to PAGE 3. The data entered in here has to add to any
existing data on a separate line in a plain text file, located in the
same directory.

PAGE 3 is done.

I am willing to do all the work, so need help and scripts to start off
with. Shouldn't take more than 20 minutes.
Jul 23 '05 #1
4 1223
Jonathan (Pickles) Sklan-Willis wrote:
I need several things in HTML or Javascript. It canNOT be a server side
script, it is for a standalone project in HTML ONLY!
HTML only? Then why are you asking/posting in a Javascript Newsgroup?
PAGE 1 is a simple blank page where there will be an on.click so that if
the screen is clicked it goes to PAGE 2. There will be a delay of 3
seconds while it says PLEASE WAIT.
Well, since you want "HTML ONLY", that is impossible since HTML has no
way to process an onclick.
PAGE 2 has a one line form (the form has a validation scheme and the OK
button will only be able to be pressed once a certain amount of digits -
11 for a phone number are inserted, only then will it work) with OK
button that goes to the next page. I need capabilities of invisible
(that means that the OK button will be invisible). The password is a
phone number which needs to show up as stars (*). A delay of 3 seconds
will route it to PAGE 3. The data entered in here has to add to any
existing data on a separate line in a plain text file, located in the
same directory.
That can't be done in "HTML ONLY" either.
PAGE 3 is done.
Nah, you never made it past Page 1.
I am willing to do all the work, so need help and scripts to start off
with. Shouldn't take more than 20 minutes.


I gave you the start, you should be able to post back in no "more than
20 minutes", right?

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Jul 23 '05 #2
Randy Webb wrote:
Jonathan (Pickles) Sklan-Willis wrote:
I need several things in HTML or Javascript. It canNOT be a server
side script, it is for a standalone project in HTML ONLY!

HTML only? Then why are you asking/posting in a Javascript Newsgroup?
PAGE 1 is a simple blank page where there will be an on.click so that
if the screen is clicked it goes to PAGE 2. There will be a delay of 3
seconds while it says PLEASE WAIT.

Well, since you want "HTML ONLY", that is impossible since HTML has no
way to process an onclick.
PAGE 2 has a one line form (the form has a validation scheme and the
OK button will only be able to be pressed once a certain amount of
digits - 11 for a phone number are inserted, only then will it work)
with OK button that goes to the next page. I need capabilities of
invisible (that means that the OK button will be invisible). The
password is a phone number which needs to show up as stars (*). A
delay of 3 seconds will route it to PAGE 3. The data entered in here
has to add to any existing data on a separate line in a plain text
file, located in the same directory.

That can't be done in "HTML ONLY" either.
PAGE 3 is done.

Nah, you never made it past Page 1.
I am willing to do all the work, so need help and scripts to start off
with. Shouldn't take more than 20 minutes.

I gave you the start, you should be able to post back in no "more than
20 minutes", right?


Nice scarcasm. OK, I meant HTML & Javascript, i.e. no server-side
scripts and you know that so stop picking on the semantics or go out and
get laid!
Jul 23 '05 #3
Jonathan (Pickles) Sklan-Willis wrote:
Randy Webb wrote:
Jonathan (Pickles) Sklan-Willis wrote:
I need several things in HTML or Javascript. It canNOT be a server
side script, it is for a standalone project in HTML ONLY!


HTML only? Then why are you asking/posting in a Javascript Newsgroup?
PAGE 1 is a simple blank page where there will be an on.click so that
if the screen is clicked it goes to PAGE 2. There will be a delay of
3 seconds while it says PLEASE WAIT.


Well, since you want "HTML ONLY", that is impossible since HTML has no
way to process an onclick.
PAGE 2 has a one line form (the form has a validation scheme and the
OK button will only be able to be pressed once a certain amount of
digits - 11 for a phone number are inserted, only then will it work)
with OK button that goes to the next page. I need capabilities of
invisible (that means that the OK button will be invisible). The
password is a phone number which needs to show up as stars (*). A
delay of 3 seconds will route it to PAGE 3. The data entered in here
has to add to any existing data on a separate line in a plain text
file, located in the same directory.


That can't be done in "HTML ONLY" either.
PAGE 3 is done.


Nah, you never made it past Page 1.
I am willing to do all the work, so need help and scripts to start
off with. Shouldn't take more than 20 minutes.


I gave you the start, you should be able to post back in no "more than
20 minutes", right?


Nice scarcasm. OK, I meant HTML & Javascript, i.e. no server-side
scripts and you know that so stop picking on the semantics or go out and
get laid!


Actually, I did. Twice.

Page 1, you add an onclick to a div tag that is 100% wide, 100% high.
Onclick="document.location.href='hrefToPage2.html' "

Page 2, you have an onchange event handler on the input that when the
length of the input's value exceeds 11, you show the submit button.

Page 3, you are done.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Answer:It destroys the order of the conversation
Question: Why?
Answer: Top-Posting.
Question: Whats the most annoying thing on Usenet?
Jul 23 '05 #4
"Randy Webb" <Hi************@aol.com> wrote in message
news:-5********************@comcast.com...

[snip]
Nice scarcasm. OK, I meant HTML & Javascript, i.e. no server-side
scripts and you know that so stop picking on the semantics or go out and
get laid!


Actually, I did. Twice.


I'll bet you had to go back in before you went out the second time. :)
Jul 23 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Phong Ho | last post by:
Hi everyone, I try to write a simple web crawler. It has to do the following: 1) Open an URL and retrieve a HTML file. 2) Extract news headlines from the HTML file 3) Put the headlines into a...
7
by: Hansan | last post by:
Hi all, I hope you have time to help me out a little. My problem is that I want to combine some python code I have made with some html templates, I found a tutorial at dev shed:...
2
by: nanookfan | last post by:
Hi all, I'm having a bizarre problem converting XML files to HTML using an XSLT. The problem is only occuring in my Netscape 7.0 browser. What makes it more bizarre is that it is only...
3
by: Spacy | last post by:
Am creating a HTML Report in asp.net. To save this report to excel on client-side, i write this code: Response.ContentType = "application/vnd.ms-excel" Response.AddHeader("content-disposition",...
8
by: guppywon | last post by:
I am trying to map ASP.NET execution to the ".html" extension. And I am encountering a strange error. I'm looking for help configuring my ".html" pages to execute as ".aspx" pages. I have added...
2
by: Jake Barnes | last post by:
Using javascript closures to create singletons to ensure the survival of a reference to an HTML block when removeChild() may remove the last reference to the block and thus destory the block is...
3
by: Chuck Renner | last post by:
Please help! This MIGHT even be a bug in PHP! I'll provide version numbers and site specific information (browser, OS, and kernel versions) if others cannot reproduce this problem. I'm...
3
by: CJM | last post by:
David, Thanks for the reply. Responses inline: "David E. Ross" <nobody@nowhere.notwrote in message news:OZadnaBdOMGpYb3VnZ2dnUVZ_vOdnZ2d@softcom.net... This is a promotional mailshot so...
1
by: robnoper | last post by:
XP SP2, access and outlook 2003 I have a form with 3 command buttons on that when one is pressed it opens up a html email for the user to send. Two of the emails work fine and open with the full...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.