"Submit" button is not functioning in Mozilla

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • YellowInvestment@gmail.com

    "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

  • Scott Bryce

    #2
    Re: &quot;Submit&qu ot; button is not functioning in Mozilla

    YellowInvestmen t@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.

    Comment

    • Beauregard T. Shagnasty

      #3
      Re: &quot;Submit&qu ot; button is not functioning in Mozilla

      YellowInvestmen t@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="vbscr ipt">
      Sub btnSubmit_OnCli ck()


      Why aren't you using: <input type="submit" ...

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

      Comment

      • YellowInvestment@gmail.com

        #4
        Re: &quot;Submit&qu ot; button is not functioning in Mozilla

        On Apr 16, 4:55 pm, Scott Bryce <sbr...@scottbr yce.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.
        >>
        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 ;-(

        Comment

        • YellowInvestment@gmail.com

          #5
          Re: &quot;Submit&qu ot; button is not functioning in Mozilla

          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...@scottbr yce.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.
          >>
          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.

          Comment

          • Scott Bryce

            #6
            Re: &quot;Submit&qu ot; button is not functioning in Mozilla

            Beauregard T. Shagnasty wrote:
            Mozilla does not do:
            >
            <SCRIPT LANGUAGE="vbscr ipt">
            Sub btnSubmit_OnCli ck()
            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.

            Comment

            • Beauregard T. Shagnasty

              #7
              Re: &quot;Submit&qu ot; button is not functioning in Mozilla

              YellowInvestmen t@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

              Comment

              • Jukka K. Korpela

                #8
                Re: &quot;Submit&qu ot; button is not functioning in Mozilla

                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")


                Comment

                • YellowInvestment@gmail.com

                  #9
                  Re: &quot;Submit&qu ot; button is not functioning in Mozilla

                  On Apr 17, 1:59 am, "Jukka K. Korpela" <jkorp...@cs.tu t.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!!!

                  Comment

                  • YellowInvestment@gmail.com

                    #10
                    Re: &quot;Submit&qu ot; button is not functioning in Mozilla

                    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...@ex ample.invalidwr ote:
                    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

                    Comment

                    • YellowInvestment@gmail.com

                      #11
                      Re: &quot;Submit&qu ot; button is not functioning in Mozilla

                      On Apr 16, 6:16 pm, Scott Bryce <sbr...@scottbr yce.comwrote:
                      Beauregard T. Shagnasty wrote:
                      Mozilla does not do:
                      >
                      <SCRIPT LANGUAGE="vbscr ipt">
                      Sub btnSubmit_OnCli ck()
                      >
                      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!!!

                      Comment

                      Working...