Form: Functional in Firefox, but not IE

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • updw123
    New Member
    • Oct 2008
    • 12

    Form: Functional in Firefox, but not IE

    Hi there,

    I have a tell-a-friend form working very well in Firefox, but IE doesn't want to know:


    Does anyone have any ideas? I'm sure it's something quite silly, but I just can't spot it.

    Thanks in advance,
    Dave
    Last edited by pbmods; Oct 6 '08, 10:36 PM. Reason: Fixed link.
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Hey there, updw123.

    What doesn't happen?
    Do you receive any errors?

    PHP is serverside, meaning PHP has nothing to do with what type of the browser the user is using.

    Comment

    • updw123
      New Member
      • Oct 2008
      • 12

      #3
      Hi Marcus,

      Thanks for getting back to me.

      Basically it says 'error on page' on the bottom right bar, and when I press nothing happens. On FireFox it just works as normal.

      Thanks in advance,
      Dave

      Comment

      • ak1dnar
        Recognized Expert Top Contributor
        • Jan 2007
        • 1584

        #4
        This is a pure HTML problem. After going through the markup of the file, what I can understand, there are so many problems with the html code. is this page contains some copied source from another page or pages?

        Code:
        <body class="thrColFixHdr">
        <body onLoad="reset()" topmargin="0" leftmargin="0">
        There are two body tags here. but that is not the only issue.

        Moved to HTML forum, from Php Forum.
        --Moderator

        Comment

        • acoder
          Recognized Expert MVP
          • Nov 2006
          • 16032

          #5
          The issue is caused by a link <a> tag inside the <script> tag. Either remove it or move it out. You should also correct the validation errors.

          Comment

          • updw123
            New Member
            • Oct 2008
            • 12

            #6
            acoder: Looks to have done the trick, thanks!

            ak1: Yes It's taken from a free source.

            Comment

            • acoder
              Recognized Expert MVP
              • Nov 2006
              • 16032

              #7
              Originally posted by updw123
              acoder: Looks to have done the trick, thanks!
              You're welcome.

              Don't forget to fix your HTML validation errors though.

              Comment

              • updw123
                New Member
                • Oct 2008
                • 12

                #8
                Originally posted by acoder
                You're welcome.

                Don't forget to fix your HTML validation errors though.
                Thanks acoder, baby steps though!

                Comment

                Working...