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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T15:35:26+00:00 2026-06-12T15:35:26+00:00

Trying to get a form to load pages with the previously checked radios already

  • 0

Trying to get a form to load pages with the previously checked radios already checked (upon a fresh load).

The submissions of that page are held as php variables which I can pass into the javascript, the rest should be simple, but it’s not working for me.

My code:

<div class="question">
            <label for="sv_213">Question?</label> 
            <input 
                    class="radio"
                    type="radio" 
                    value="Yes" 
                    name="sv_213" 
                />Yes
            <input 
                    class="radio"
                    type="radio" 
                    value="No" 
                    name="sv_213"
                />No

        </div>

My javascript:

$(function() {
    var $213 = Yes;
    $("input[name='sv_213'][value="$213"]").attr('checked', true);

    });?

In the above js the

var $213 = <dynamically generated content>

Such that it is set equal to the value of the radio button that was checked

Here is a js fiddle with it not working:
http://jsfiddle.net/CW8AC/

Many thanks for any help.

Incidentally my code is based on this, previously asked question:
Set selected radio from radio group with a value

  • 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-06-12T15:35:27+00:00Added an answer on June 12, 2026 at 3:35 pm

    You need quotes around your value “Yes”, since this is a string, and not a boolean or number.

    var $213 = "Yes";
    

    Also, you need to add the variable into the selector with +’s like this:

    $("input[name=sv_213][value="+$213+"]").attr('checked', true);
    

    Updated fiddle, working: http://jsfiddle.net/CW8AC/1/

    Full js code:

    $(function() {
        var $213 = "Yes";
        $("input[name=sv_213][value="+$213+"]").attr('checked', true);
    
        });
    

    Update:## Since jQuery 1.6, you can also use the .prop method with a boolean value (this should be the preferred method):

    $("input[name=sv_213][value="+$213+"]").prop('checked', true);
    

    in my case, the .attr() method didnt worked for dynamically selecting the radio button whereas .prop() did.

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

Sidebar

Related Questions

Im trying to get a form working in Internet Explorer. I see that when
I am trying to get the following code to fire once on page load/refresh
I have a Page (form) that has many UserControls on it, and I'm trying
I'm trying to get my cursor to load in my login form field on
Magento 1.6.1 I am trying to get form data on my observer. I tried
I am trying to get some form data from POST method. Here's the code
I have a contentPane with a remote form, I'm trying to get the form
I have a problem in firefox, where I'm trying to get a form submission
I'm trying to get a table form a numpy array at the barplot bottom
I am trying to get post a form to a hidden, dynamically inserted iframe,

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.