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 4626504
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T03:25:49+00:00 2026-05-22T03:25:49+00:00

I copied a pice of jquery code from a tutorial for working with radio

  • 0

I copied a pice of jquery code from a tutorial for working with radio buttons. It is not working for me but from the comments on the tutorial it seems to work for other people. I get this “missing ) after argument list” } else {
So here is the relevant portion of my code. I have two radio buttons above two forms. I want to show the form with the checked radio button and hide the other form.

    <script type="text/javascript">
        $(document).ready(function() {
          $('#existing-login').show();
          $('#new-customer').hide();
        });

        $("input[@name='customer']").change(function(){
            if ($("input[@name='customer']:checked").val() == "new")
                $("#new-customer").show();
                $("#existing-login").hide();
            } else {
                $("#existing-login").show();
                $("#new-customer").hide();
            }
        });
    </script>

   <input type="radio" name="customer" value="existing" checked="checked"/>
   <input type="radio" name="customer" value="new"/>

        <div id="existing-login">
            <!-- form for existing customer login -->
        </div>
        <div id="new-customer">
            <!-- form for new customers -->
        </div>
  • 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-22T03:25:50+00:00Added an answer on May 22, 2026 at 3:25 am

    Missing { after your if statement:

    if ($("input[@name='customer']:checked").val() == "new") {
        $("#new-customer").show();
        $("#existing-login").hide();
    } else {
        $("#existing-login").show();
        $("#new-customer").hide();
    }
    

    Also the @ syntax for selecting attributes isn’t supported anymore in current versions of jQuery, so remove that too:

    if ($("input[name='customer']:checked").val() == "new") {
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I copied the exact (working) colladaLoader code from three.js on github, and put it
I copied this script from here but I'm not sure how to modify it
I have copied code from Adobe Tour de Flex(Other components=>containers=>TitledBorderBox) var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(TitledBorderBox);
I copied some Delphi code from one project to another, and found that it
I copied this code from an example . I've read it 100 times. Array.prototype.map
This code is copied directly from http://java.sun.com/docs/books/jni/html/objtypes.html#4013 JNIEXPORT jstring JNICALL Java_Prompt_getLine(JNIEnv *env, jobject obj,
I have copied some files across from one project to another. The code simply
I copied some PHP mailer and at some point had it working. But the
I copied the following Ruby code from the Internet and made a few changes
Copied a working website from one server to another, now I'm getting this error

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.