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

  • Home
  • SEARCH
  • 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 8123527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T06:12:33+00:00 2026-06-06T06:12:33+00:00

<input type=radio name=group1 value=Milk> Milk<br> <input type=radio name=group1 value=Butter> Butter $(????).change(function(){ alert($(this).val()); }) How

  • 0
    <input type="radio" name="group1" value="Milk"> Milk<br>
    <input type="radio" name="group1" value="Butter"> Butter

$("????").change(function(){
   alert($(this).val());
})

How is the best method for get current checked value from two input with one name? If i click on radio Milk then this should show me “Milk” etc.
I can add class for this and showing current value, but this is the best method?

  • 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-06T06:12:34+00:00Added an answer on June 6, 2026 at 6:12 am

    Like this: Working demo http://jsfiddle.net/VtcPB/1/

    Good read: http://api.jquery.com/attribute-equals-selector/

    Also Like @Casper said for group use : $('input[name ="group1"]') Demo http://jsfiddle.net/VtcPB/2/

    Or little more optimized http://jsfiddle.net/VtcPB/3/ using this.value instead of $(this).val()

    Or Another with more accuracy demo: http://jsfiddle.net/VtcPB/4/

    Hope this helps

    code

    $("input:radio[name=group1]").click(function() {
        alert($(this).val());
    });​
    

    OR

    $('input[name ="group1"]').on('change',function(){
       alert(this.value);
    })​
    

    OR

    $('input[type="radio"]').on('change',function(){
       alert($(this).val());
    })​
    

    OR

       <input type="radio" name="group1" value="Milk"> Milk<br>
        <input type="radio" name="group1" value="Butter"> Butter
    
    $('input[type="radio"]').change(function(){
       alert($(this).val());
    })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is my div: <div id=demo align=center value=1> <h3>By Color</h3> <input type=radio name=group1 id=color1
I have HTML like this: <input type=radio name=type value=FL checked=checked />Fixed <input type=radio name=type
I have the following HTML: <div class=row1> <input type=radio name=group1 value=0 checked=checked/>Zero <input type=radio
$(function(){ function f1(){} function f2(){} } <Input type = radio Name = radiobutton Value
Question 1: Given <input type=radio name=foo value=1 /> <input type=radio name=foo value=2 /> <input
What I need is 'data-cost': <input type=radio class=selection data-cost=0 value=One name=f_1/> To increase depending
<input id=@question.QuestionId type=radio value=@question.QuestionDescription name=@string.Format(name_{0}, question.Group) checked=@question.IsSelectedchecked:false /> @question.QuestionDescription Depending on the question.IsSelected value
<p><label><input type=radio name=group1 /> one</label></p> <p><label><input type=radio name=group1 /> two</label></p> <p><label><input type=radio name=group1 />
Radio box code: <input type = radio name = choice value = A />Apples
I have some test code here <input type=radio name=group1>1 <input type=radio name=group1>2 <input type=radio

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.