473,327 Members | 2,007 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,327 software developers and data experts.

"Submit" button is not functioning in Mozilla

Hello: I am new to this group and i am not sure if this is the right
place.

It would be so helpful if someone can tell how to fix my following
problem.

the link is: http://beta.hiu.edu/admissionscpg/cp...1+Let+me+in%21

when I click on Submit in Mozilla, the submit button doesn't function
at all but it works fine in IE.
<input type=button name="btnSubmit" value="I'm Done! Send me my
College Planning Guide!">

can you tell me what am I missing?

thank you so very much!
zay

Apr 16 '07 #1
10 5606
Ye**************@gmail.com wrote:
Hello: I am new to this group and i am not sure if this is the right
place.

It would be so helpful if someone can tell how to fix my following
problem.

the link is: http://beta.hiu.edu/admissionscpg/cp...1+Let+me+in%21

when I click on Submit in Mozilla, the submit button doesn't function
at all but it works fine in IE.

W3C QA Markup Validation Service v0.7.4
Result: Failed validation, 285 errors

There isn't a whole lot we can do for you until you fix the validation
errors. Once they are fixed, the problem should solve itself.
Apr 17 '07 #2
Ye**************@gmail.com wrote:
when I click on Submit in Mozilla, the submit button doesn't function
at all but it works fine in IE.
<input type=button name="btnSubmit" value="I'm Done! Send me my
College Planning Guide!">
Mozilla does not do:

<SCRIPT LANGUAGE="vbscript">
Sub btnSubmit_OnClick()
Why aren't you using: <input type="submit" ...

--
-bts
-Motorcycles defy gravity; cars just suck
Apr 17 '07 #3
On Apr 16, 4:55 pm, Scott Bryce <sbr...@scottbryce.comwrote:
YellowInvestm...@gmail.com wrote:
Hello: I am new to this group and i am not sure if this is the right
place.
It would be so helpful if someone can tell how to fix my following
problem.
the link is:http://beta.hiu.edu/admissionscpg/cp...mit=Sweet%21+L...
when I click on Submit in Mozilla, the submit button doesn't function
at all but it works fine in IE.

W3C QA Markup Validation Service v0.7.4
Result: Failed validation, 285 errors

There isn't a whole lot we can do for you until you fix the validation
errors. Once they are fixed, the problem should solve itself.
THANK YOU SO MUCH!! The page is validated now, but the submit button
is still not functioning ;-(

Apr 17 '07 #4
Thank you so much!! The page is validated now, but the submit button
is still not functioning ;-((

zaya
On Apr 16, 4:55 pm, Scott Bryce <sbr...@scottbryce.comwrote:
YellowInvestm...@gmail.com wrote:
Hello: I am new to this group and i am not sure if this is the right
place.
It would be so helpful if someone can tell how to fix my following
problem.
the link is:http://beta.hiu.edu/admissionscpg/cp...mit=Sweet%21+L...
when I click on Submit in Mozilla, the submit button doesn't function
at all but it works fine in IE.

W3C QA Markup Validation Service v0.7.4
Result: Failed validation, 285 errors

There isn't a whole lot we can do for you until you fix the validation
errors. Once they are fixed, the problem should solve itself.

Apr 17 '07 #5
Beauregard T. Shagnasty wrote:
Mozilla does not do:

<SCRIPT LANGUAGE="vbscript">
Sub btnSubmit_OnClick()
I missed that. Yes, this is the OP's problem. He is trying to do form
validation using vbscript.

The OP needs to know that 1) vbscript only runs in IE, and 2) form
validation should always be done server side.
Apr 17 '07 #6
Ye**************@gmail.com wrote:
Thank you so much!! The page is validated now,
No, there are still three errors.
but the submit button is still not functioning ;-((
Did you see my other post? VBScript only works in IE, and none of the
other hundreds of browsers...

--
-bts
-Motorcycles defy gravity; cars just suck
Apr 17 '07 #7
Scripsit Scott Bryce:
The OP needs to know that 1) vbscript only runs in IE, and 2) form
validation should always be done server side.
3) preliminary auxiliary form validation _can_ (and often should) be done
client-side, _too_, but
a) it should be done in JavaScript, not vbscript
b) it should be done in a manner that does not prevent form submission when
JavaScript is not enabled - normally, it's done via an onsubmit="..."
attribute in a <formelement that contains a normal <input type="submit">
element.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Apr 17 '07 #8
On Apr 17, 1:59 am, "Jukka K. Korpela" <jkorp...@cs.tut.fiwrote:
Scripsit Scott Bryce:
The OP needs to know that 1) vbscript only runs in IE, and 2) form
validation should always be done server side.

3) preliminary auxiliary form validation _can_ (and often should) be done
client-side, _too_, but
a) it should be done in JavaScript, not vbscript
b) it should be done in a manner that does not prevent form submission when
JavaScript is not enabled - normally, it's done via an onsubmit="..."
attribute in a <formelement that contains a normal <input type="submit">
element.

--
Jukka K. Korpela ("Yucca")http://www.cs.tut.fi/~jkorpela/
THANK YOU SO MUCH!!! I CHANGED IT TO JAVASCRIPT AND IT WORKS!! YEAH!!
THANKS AGAIN!!!

Apr 20 '07 #9
THANK YOU SO MUCH!!! I CHANGED IT TO JAVASCRIPT AND IT WORKS!! YEAH!!
THANKS AGAIN!!!

On Apr 16, 7:14 pm, "Beauregard T. Shagnasty"
<a.nony.m...@example.invalidwrote:
YellowInvestm...@gmail.com wrote:
Thank you so much!! The page is validated now,

No, there are still three errors.
but the submit button is still not functioning ;-((

Did you see my other post? VBScript only works in IE, and none of the
other hundreds of browsers...

--
-bts
-Motorcycles defy gravity; cars just suck

Apr 20 '07 #10
On Apr 16, 6:16 pm, Scott Bryce <sbr...@scottbryce.comwrote:
Beauregard T. Shagnasty wrote:
Mozilla does not do:
<SCRIPT LANGUAGE="vbscript">
Sub btnSubmit_OnClick()

I missed that. Yes, this is the OP's problem. He is trying to do form
validation using vbscript.

The OP needs to know that 1) vbscript only runs in IE, and 2) form
validation should always be done server side.
THANK YOU SO MUCH!!! I CHANGED IT TO JAVASCRIPT AND IT WORKS!! YEAH!!
THANKS AGAIN!!!

Apr 20 '07 #11

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

Similar topics

5
by: lsarg | last post by:
i've been trying forever to figure out a way to use a regular text link in place of a submit button at the bottom of this. can't get it. i'm just starting to learn php, so i'm stuck. any help at...
7
by: NotGiven | last post by:
I changed my POST to GET and find appended to the url, the above string. Why and what can I do to NOT have them appended? Thanks.
1
by: David Bradbury | last post by:
Hi On my form, as soon as the user clicks my submit button a message pops up saying "Form processing" as the form submits. This is fine as long as the user only clicks the submit button once....
5
by: Mikko Rantalainen | last post by:
See example at <URL:http://www.cc.jyu.fi/~mira/moz/formtest.php>. The problem is that the label of submit button is always centered on the button regardsless of 'text-align' property in CSS....
3
by: Pete Wilson | last post by:
How can I highlight the <input type="submit"> object that I want to highlight? 1. In my form, the user enters his ID. He sees two submit "buttons," left labeled Cancel, the right labeled Signup....
5
by: Matt | last post by:
I want to know what is the purpose of runat="server" attribute?? For example, for a submit button, it just submit the form data to the server, whats the differences between <input...
4
by: dschruth | last post by:
Hello. Can anybody solve this problem? I am using a server-side language (PERL) to *try* to POST data to a HTTPS login script that doesn't have a standard "submit" button. The form appears...
5
by: Alex Maghen | last post by:
In ASPX 2.0 with MasterPages and all that, my entire page only has one actual <FORM>. But there are several different sections of the page that provide what are functionally separate forms with...
14
by: white lightning | last post by:
How to have <select onchange="this.form.submit()"and also a Submit button on one form? I have something like this: <form action="<?php $_SERVER; ?>" method="post"...
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
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
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: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
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...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
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

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.