Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6746369
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:18:52+00:00 2026-05-26T12:18:52+00:00

I have an HTML form in my site, and for whatever reason I am

  • 0

I have an HTML form in my site, and for whatever reason I am unable to enter text in the inputs when viewing the site in Firefox (and only Firefox). My form is set up as follows:

             <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<form action="/MyAction/" method = "post" id="register">

                    <div class="registerField">
                        <label for="signupFirstName" class="registerLabel">First Name</label>
                        <input type="text" name="signupFirstName" id="signupFirstName" />
                    </div>
                    <div class="registerField">
                        <label for="signupLastName" class="registerLabel">Last Name</label>
                        <input type="text" name="signupLastName" id="signupLastName" />
                    </div>
                    <div class="registerField">
                        <label for="signupPassword" class="registerLabel">Enter Password</label>
                        <input type="password" name="signupPassword" id="signupPassword" autocomplete="off" />
                    </div>
                    <div class="registerField">
                         <label for="retypeSignupPassword" class="registerLabel">Re-enter Password</label>
                        <input type="password" name="retypeSignupPassword" id="retypeSignupPassword" autocomplete="off" />
                    </div>
                    <div>
                        <div id="registerButtons">
                            <label for="signupButton">
                                <input type="submit" value = "Create Account" name = "registerButton" id="signupButton"/>
                            </label>
                        </div>
                    </div>
                </form>

I had a callback attached to the keyup event on the form (which did indeed register the event), but that has since been disabled and I still have this problem. Also, when I right-click and select “Inspect Element” on any of the input elements to launch Firebug, everything works. Thanks in advance for any and all advice.

EDIT: Thanks to everyone who’s commented so far. Below is the Javascript method off of the controller we use to coordinate the form:

        if (this.view.hasClass("readyToSubmit"))
    {
        return true;
    }
    else
    {
        var email = viewState.userState.user.EmailAddress;
        var password = $("#signupPassword").val();
        var passwordConfirm = $("#retypeSignupPassword").val();
        var firstName = $("#signupFirstName").val();
        var lastName = $("#signupLastName").val();
        var isOrg = false;

        if (!isValidEmail(email))
        {
            this.registerStatusController.set("Invalid email");
            return false;
        }

        if ((password == null) || (password == undefined) || (password.length < 6))
        {
            this.registerStatusController.set("Please enter a total of at least 6 letters, numbers, and symbols for your password");
            return false;
        }

        if (!(password == passwordConfirm))
        {
            this.registerStatusController.set("Your passwords do not match");
            return false;
        }

        if (firstName == '' || lastName == '')
        {
            this.registerStatusController.set("You must provide a first and last name.");
            return false;
        }

        requestController.post("/Home/MyAction",
            {
                username: email,
                password: password,
                passwordConfirm: passwordConfirm,
                firstName: firstName,
                lastName: lastName,
                timeOffset: -(new timezoneJS.Date()).getTimezoneOffset(), //Our tzo is negative of server side tzo
                isOrganization: isOrg
            },
            $.scope(this.callbackRegistered, this),

            function (XMLHttpRequest, textstatus, errorThrown)
            {
                this.registerStatusController.set("A system error has occurred.  Please try again later.");
            });


        return false;
    }

    this.callbackRegistered = function (data, textStatus)
{
    if (data == 0)
    {
        viewState.userState.isProvisional = false;
        this.registerStatusController.set("New account created");
        this.view.addClass("readyToSubmit");
        // $("#register").submit();

        // Run the post-registration action and then clear it.
        if (this.postRegisterAction)
        {
            this.postRegisterAction();
            this.postRegisterAction = null;
        }
        this.hide();
    }
    else
    {
        $('body').css("cursor", "auto");

        if (data == 1)
        {
            this.registerStatusController.set("You are already logged in");
        }
        else if (data == 3)
        {
            this.registerStatusController.set("Your account is already registered");
        }
        else if (data == 4)
        {
            this.registerStatusController.set("Your invitation code is not valid");
        }
        else
        {
            this.registerStatusController.set("The system is not available at this time.  Please try again later.");
        }
    }
}

No CSS has been defined on these inputs.

One other thing: this form is stored in a pop-over div that overlays the entire page. Its CSS is defined below:

#registerPopOver
{
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
}

The form resides in a div within #registerPopOver:

#registerPopOverInner
{
    margin: auto;
    background-color: white;
    width: 300px;
    margin-top: 20%;
    border: 1px #CCC solid;
    padding: 4px;
}

Thank you all again for your advice.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T12:18:53+00:00Added an answer on May 26, 2026 at 12:18 pm

    We found the problem. Turns out a javascript-based calendar was stealing our focus. Thanks to everyone who responded!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web site that contains an HTML form, in this form I
I have a HTML form; I want to be able to set it so
I have an HTML form on my site that submits via Ajax to a
Hi I have an html template for switching languages on my site: <form action={{
i have this simple html form: <form action=test/ method=get accept-charset=utf-8> <input type=text name=first value=
i have this simple html form: <form action=test/ method=get accept-charset=utf-8> <input type=text name=first value=
i have html form i am using <a href="#" onclick="document.aa.submit()"> instead of submit button
I have a following problem, I have HTML form that uploads a file with
My input tag started to go crazy... I have html form for input to
I have a HTML form that has certain fields which i am opening inside

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.