How to know the value of a live radio button with javascript - javascript
I'm trying to retrieve the value of a radio button without validation or button.
When the user changes the radio button I want to retrieve the live value.
I have already tried a lot of code but none worked.
var az = document.querySelector("input[name='promotioncases']").checked = true;
console.log(az);
var selectedValue = $("input.promotioncases:checked").val();
console.log(selectedValue);
var selectedRadioValue = $("input.promotioncases:checked").attr("radio-value");
console.log(selectedRadioValue);
const promotion = document.getElementsByName('promotioncases')
for (e of promotion) {
if (e.checked)
console.log(`Elément ${e.id} coché`)
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input
type="radio"
name="promotioncases"
class="promotioncases"
id="black"
data-target="10"
data-nom="POSTE-ENVELLOPPE-belgique"
value="10" />
<input
type="radio"
name="promotioncases"
class="promotioncases"
id="red"
data-target="20"
data-nom="POSTE-ENVELLOPPE-belgique"
value="20" />
<input
type="radio"
name="promotioncases"
class="promotioncases"
id="vert"
data-target="30"
data-nom="POSTE-ENVELLOPPE-belgique"
value="30" />
$('input[name="promotioncases"]').on('click', function() {
console.log($(this).attr('data-target'))
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input
type="radio"
name="promotioncases"
class="promotioncases"
id="black"
data-target="10"
data-nom="POSTE-ENVELLOPPE-belgique"
value="10" />
<input
type="radio"
name="promotioncases"
class="promotioncases"
id="red"
data-target="20"
data-nom="POSTE-ENVELLOPPE-belgique"
value="20" />
<input
type="radio"
name="promotioncases"
class="promotioncases"
id="vert"
data-target="30"
data-nom="POSTE-ENVELLOPPE-belgique"
value="30" />
Related
Radio button calculator with nested if Stateme
I am trying to create a pricing calculator that takes all of the checked radio buttons and pushes them into an array where it is added in the end. However, I would like to have one of the radio buttons take the attribute of the first radio button and multiply it by its own value. I tried nesting an if statement inside of another if statement but it will only seem to add the values of the first if statement and ignore the second. $(".w-radio").change(function() { var totalPrice = 0, values = []; $("input[type=radio]").each(function() { if ($(this).is(":checked")) { if ($(this).is('[name="catering"]')) { var cateringFunc = ( $(this).val() * $('[name="gastronomy"]').attr("add-value") ).toString(); values.push($(this).val()); } values.push($(this).val()); totalPrice += parseInt($(this).val()); } }); $("#priceTotal span").text(totalPrice); }); <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <label class="hack43-radio-group w-radio"> <input type="radio" name="gastronomy" value="0" add-value="10">0<BR> <input type="radio" name="gastronomy" value="550" add-value="10">550<BR> <input type="radio" name="gastronomy" value="550" add-value="10">550<BR> <input type="radio" name="gastronomy" value="550" add-value="10">550<BR> </label> <br> <label class="hack43-radio-group w-radio"> <input type="radio" name="venue" value="0">0<BR> <input type="radio" name="venue" value="10500">10500<BR> <input type="radio" name="venue" value="10500">10500<BR> <input type="radio" name="venue" value="10500">10500<BR> </label> <br> <label class="hack43-radio-group w-radio"> <input type="radio" name="catering" value="0">0<BR> <input type="radio" name="catering" value="40">40<BR> <input type="radio" name="catering" value="45">45<BR> <input type="radio" name="catering" value="60">60<BR> </label> <div class="hack42-45-added-value-row"> <div id="priceTotal"> <span>0</span> </div> </div>
When the condition is true you should use cateringFunc instead of $(this).val() when pushing into the values array and adding to totalPrice. I assume you only want to get the added value from the selected radio button, so I added :checked to the selector. Then you also need to provide a default value if none of the gastronomy buttons are checked. You shouldn't make up new attributes like add-value. If you need custom attributes, use data-XXX. These can be accessed using the jQuery .data() method. $(".w-radio").change(function() { var totalPrice = 0, values = []; $("input[type=radio]:checked").each(function() { if ($(this).is('[name="catering"]')) { var cateringFunc = ( $(this).val() * ($('[name="gastronomy"]:checked').data("add-value") || 0) ); values.push(cateringFunc.toString()); totalPrice += cateringFunc; } values.push($(this).val()); totalPrice += parseInt($(this).val()); }); $("#priceTotal span").text(totalPrice); }); <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <label class="hack43-radio-group w-radio"> <input type="radio" name="gastronomy" value="0" data-add-value="10">0<BR> <input type="radio" name="gastronomy" value="550" data-add-value="10">550<BR> <input type="radio" name="gastronomy" value="550" data-add-value="10">550<BR> <input type="radio" name="gastronomy" value="550" data-add-value="10">550<BR> </label> <br> <label class="hack43-radio-group w-radio"> <input type="radio" name="venue" value="0">0<BR> <input type="radio" name="venue" value="10500">10500<BR> <input type="radio" name="venue" value="10500">10500<BR> <input type="radio" name="venue" value="10500">10500<BR> </label> <br> <label class="hack43-radio-group w-radio"> <input type="radio" name="catering" value="0">0<BR> <input type="radio" name="catering" value="40">40<BR> <input type="radio" name="catering" value="45">45<BR> <input type="radio" name="catering" value="60">60<BR> </label> <div class="hack42-45-added-value-row"> <div id="priceTotal"> <span>0</span> </div> </div>
Why is my counter always equal to zero even after the correct radio button is pressed?
In my Javascript code, I increment the counter when the right radio button is checked but when I check in the console, the counter doesn't get updated after the correct radio button is checked. Even after I click the submit button which calls a function clicked() that displays the counter. The counter still remains zero. Is there a reason why it doesn't get updated. Here is my Java Script code: var counter = 0; if (document.getElementById('blue').checked) { counter++; } if (document.getElementById('age3').checked) { counter++; } if (document.getElementById('hobby2').checked) { counter++; } if (document.getElementById('game3').checked) { counter++; } if (document.getElementById('language4').checked) { counter++; } function clicked() { document.getElementById("result").innerHTML = "You got " + counter; } <h1>Quiz</h1> <form> <p>(1) What is my favourite Color?</p> <input type="radio" id="blue" name="color" value="blue"> <label for="blue">blue</label><br> <input type="radio" id="red" name="color" value="red"> <label for="red">red</label><br> <input type="radio" id="green" name="color" value="green"> <label for="green">green</label><br> <input type="radio" id="purple" name="color" value="purple"> <label for="purple">purple</label> <br> <p>(2) How Old am I?</p> <input type="radio" id="age1" name="age" value="20"> <label for="age1">20</label><br> <input type="radio" id="age2" name="age" value="22"> <label for="age2">22</label><br> <input type="radio" id="age3" name="age" value="21"> <label for="age3">21</label><br> <input type="radio" id="age4" name="age" value="23"> <label for="age4">23</label> <br> <p>(3) Which of the following is not of a hobby of mine?</p> <input type="radio" id="hobby1" name="hobby" value="swimming"> <label for="hobby1">swimming</label><br> <input type="radio" id="hobby2" name="hobby" value="soccer"> <label for="hobby2">soccer</label><br> <input type="radio" id="hobby3" name="hobby" value="chess"> <label for="hobby3">chess</label><br> <input type="radio" id="hobby4" name="hobby" value="coding"> <label for="hobby4">coding</label> <br> <p>(4) Which of the following is a game that I like?</p> <input type="radio" id="game1" name="game" value="NBA"> <label for="game1">NBA</label><br> <input type="radio" id="game2" name="game" value="FortNite"> <label for="game2">FortNite</label><br> <input type="radio" id="game3" name="game" value="God of War"> <label for="game3">God of War</label><br> <input type="radio" id="game4" name="game" value="Call of Duty"> <label for="game4">Call of Duty</label> <p>(5) At what is my favourite language</p> <input type="radio" id="language1" name="language" value="python"> <label for="language1">python</label><br> <input type="radio" id="language2" name="language" value="Javascript"> <label for="language2">Javascript</label><br> <input type="radio" id="language3" name="language" value="C++"> <label for="language3">C++</label><br> <input type="radio" id="language4" name="language" value="Java"> <label for="language4">Java</label><br><br> </form> <button onclick="clicked()">Submit</button> <p id="result"> </p>
Put all those radio button checkings into a function and call that function when you hit submit. This should solve your problem. var counter = 0; function updateCounter(){ if (document.getElementById('blue').checked) { counter++; } if (document.getElementById('age3').checked) { counter++; } if (document.getElementById('hobby2').checked) { counter++; } if (document.getElementById('game3').checked) { counter++; } if (document.getElementById('language4').checked) { counter++; } } function clicked() { updateCounter() document.getElementById("result").innerHTML = "You got " + counter; //reset the counter back to zero after displaying score counter = 0 } <h1>Quiz</h1> <form> <p>(1) What is my favourite Color?</p> <input type="radio" id="blue" name="color" value="blue"> <label for="blue">blue</label><br> <input type="radio" id="red" name="color" value="red"> <label for="red">red</label><br> <input type="radio" id="green" name="color" value="green"> <label for="green">green</label><br> <input type="radio" id="purple" name="color" value="purple"> <label for="purple">purple</label> <br> <p>(2) How Old am I?</p> <input type="radio" id="age1" name="age" value="20"> <label for="age1">20</label><br> <input type="radio" id="age2" name="age" value="22"> <label for="age2">22</label><br> <input type="radio" id="age3" name="age" value="21"> <label for="age3">21</label><br> <input type="radio" id="age4" name="age" value="23"> <label for="age4">23</label> <br> <p>(3) Which of the following is not of a hobby of mine?</p> <input type="radio" id="hobby1" name="hobby" value="swimming"> <label for="hobby1">swimming</label><br> <input type="radio" id="hobby2" name="hobby" value="soccer"> <label for="hobby2">soccer</label><br> <input type="radio" id="hobby3" name="hobby" value="chess"> <label for="hobby3">chess</label><br> <input type="radio" id="hobby4" name="hobby" value="coding"> <label for="hobby4">coding</label> <br> <p>(4) Which of the following is a game that I like?</p> <input type="radio" id="game1" name="game" value="NBA"> <label for="game1">NBA</label><br> <input type="radio" id="game2" name="game" value="FortNite"> <label for="game2">FortNite</label><br> <input type="radio" id="game3" name="game" value="God of War"> <label for="game3">God of War</label><br> <input type="radio" id="game4" name="game" value="Call of Duty"> <label for="game4">Call of Duty</label> <p>(5) At what is my favourite language</p> <input type="radio" id="language1" name="language" value="python"> <label for="language1">python</label><br> <input type="radio" id="language2" name="language" value="Javascript"> <label for="language2">Javascript</label><br> <input type="radio" id="language3" name="language" value="C++"> <label for="language3">C++</label><br> <input type="radio" id="language4" name="language" value="Java"> <label for="language4">Java</label><br><br> </form> <button onclick="clicked()">Submit</button> <p id="result"> </p>
Every time you are getting the value as 0 as the login you written is not calling on clicking of radio button. First thing Just defined the all radio button into a method like below. function SelectValue () { counter = 0; if (document.getElementById('blue').checked) { counter++; } if (document.getElementById('age3').checked) { counter++; } if (document.getElementById('hobby2').checked) { counter++; } if (document.getElementById('game3').checked) { counter++; } if (document.getElementById('language4').checked) { counter++; } } Now there is two way you can call. Either call that method in each and every method like below. <p>(1) What is my favourite Color?</p> <input type="radio" id="blue" name="color" value="blue" onclick="clickmethodthod()"> <label for="blue">blue</label><br> Write a logic of click and attached to all radio button. let counter = 0; const radios = document.querySelector('input[type="radio"]'); for(radio in radios) { radios[radio].onclick = function() { SelectValue () } } Let me know if you are getting any issue.
How Can I Cascade Radio Buttons In Javascript?
I'm new to programming and am tasked with creating a clickable tournament bracket. 8 teams, where you can pick the winners who will advance to the next round. The problem I'm running into is when a person would want to revise picks in the first or second round after filling out the bracket. For example in the first round the user picks: Team1 v. Team8 --> #1 moves on Team4 v. Team5 --> #4 moves on Team3 v. Team6 --> #3 moves on Team2 v. Team7 --> #2 moves on In the Second Round let's say they pick: Team1 v. Team4 --> #1 moves on Team2 v. Team3 --> #2 moves on In the Finals, they pick: Team1 v. Team2 --> #1 wins. Then, let's say the user changes their mind and picks Team8 to upset Team1 in the first round. Right now the code would still show Team1 as the winner and in the final game. How can I remove the text for the future rounds that currently shows Team1? Attaching JSFiddle here: https://jsfiddle.net/a4hya2c7/5/ or see below code: <!DOCTYPE html> <html> <head> <title>Button</title> </head> <body> <p>First Round</p> <div id="round1"> <input type="radio" name="g1" id="i1" value="#1" onclick="changeText(this.value);"><label id="r1">#1</label> <input type="radio" name="g1" id="i2" value="#8" onclick="changeText(this.value);"><label id="r2">#8</label></br> <input type="radio" name="g2" id="i3" value="#4" onclick="changeText2(this.value);"><label id="r3">#4</label> <input type="radio" name="g2" id="i4" value="#5" onclick="changeText2(this.value);"><label id="r4">#5</label></br> <input type="radio" name="g3" id="i5" value="#3" onclick="changeText3(this.value);"><label id="r5">#3</label> <input type="radio" name="g3" id="i6" value="#6" onclick="changeText3(this.value);"><label id="r6">#6</label></br> <input type="radio" name="g4" id="i7" value="#7" onclick="changeText4(this.value);"><label id="r7">#7</label> <input type="radio" name="g4" id="i8" value="#2" onclick="changeText4(this.value);"><label id="r8">#2</label></br> </div> </br> <p>Second Round</p> <div id="round2"> <input type="radio" name="g5" id="i9" onclick="changeText5(this.value);"><label id="r9"></label> <input type="radio" name="g5" id="i10" onclick="changeText5(this.value);"><label id="r10"></label></br> <input type="radio" name="g6" id="i11" onclick="changeText6(this.value);"><label id="r11"></label> <input type="radio" name="g6" id="i12" onclick="changeText6(this.value);"><label id="r12"></label></br> </div> </br> <p>Finals</p> <div id="round3"> <input type="radio" name="g7" id="i13" onclick="changeText7(this.value);"><label id="r13"></label> <input type="radio" name="g7" id="i14" onclick="changeText7(this.value);"><label id="r14"></label></br> </div> </br> <p>Winner</p> <div id="round4"> <label value="#8" id="r15"></label></br> </div> </br> </body> </html> JS: function changeText(value) { document.getElementById('r9').innerHTML = value; document.getElementById('i9').value = value; } function changeText2(value) { document.getElementById('r10').innerHTML = value; document.getElementById('i10').value = value; } function changeText3(value) { document.getElementById('r11').innerHTML = value; document.getElementById('i11').value = value; } function changeText4(value) { document.getElementById('r12').innerHTML = value; document.getElementById('i12').value = value; } function changeText5(value) { document.getElementById('r13').innerHTML = value; document.getElementById('i13').value = value; } function changeText6(value) { document.getElementById('r14').innerHTML = value; document.getElementById('i14').value = value; } function changeText7(value) { document.getElementById('r15').innerHTML = value; document.getElementById('r15').value = value; }
Firstly your <br> tags aren't correct as you can see here: </div> </br> You are using the close tag without the opening. You can either use: <br/> Or use the newer html5 self closing tags style: <br> As to the JS itself, you can simplify it a lot if you use an attribute, similar as the name you are already using to point where it must put the value. With that change the code would be a lot smaller and simpler: const inputs = document.querySelectorAll("input[type=radio]"); for (let inp of inputs){ inp.addEventListener("change", function(){ let targetLabel = document.getElementById(inp.dataset.target); targetLabel.previousSibling.value = inp.value; targetLabel.innerHTML = inp.value; }); } <p>First Round</p> <div id="round1"> <input type="radio" name="g1" id="i1" value="#1" data-target="r9"><label id="r1">#1</label> <input type="radio" name="g1" id="i2" value="#8" data-target="r9"><label id="r2">#8</label><br> <input type="radio" name="g2" id="i3" value="#4" data-target="r10"><label id="r3">#4</label> <input type="radio" name="g2" id="i4" value="#5" data-target="r10"><label id="r4">#5</label><br> <input type="radio" name="g3" id="i5" value="#3" data-target="r11"><label id="r5">#3</label> <input type="radio" name="g3" id="i6" value="#6" data-target="r11"><label id="r6">#6</label><br> <input type="radio" name="g4" id="i7" value="#7" data-target="r12"><label id="r7">#7</label> <input type="radio" name="g4" id="i8" value="#2" data-target="r12"><label id="r8">#2</label><br> </div> <br> <p>Second Round</p> <div id="round2"> <input type="radio" name="g5" id="i9" data-target="r13"><label id="r9"></label> <input type="radio" name="g5" id="i10" data-target="r13"><label id="r10"></label><br> <input type="radio" name="g6" id="i11" data-target="r14"><label id="r11"></label> <input type="radio" name="g6" id="i12" data-target="r14"><label id="r12"></label><br> </div> <br> <p>Finals</p> <div id="round3"> <input type="radio" name="g7" id="i13" data-target="r15"><label id="r13"></label> <input type="radio" name="g7" id="i14" data-target="r15"><label id="r14"></label><br> </div> <br> <p>Winner</p> <div id="round4"> <label value="#8" id="r15"></label><br> </div> <br> Note that the targets i set were directly to the labels: <input type="radio" ... data-target="r9"> Then to get to the corresponding radio i used previousSibling. I used several functions that you may not know: querySelectorAll - to get an array of elements matching the selector passed for ... of to iterate on all inputs retrieved by the querySelectorAll addEventListener - to set the event handler directly on Javascript and make the code cleaner And with just those little lines of Javascript you have the same functionality, and most importantly, without code duplication. Now if you want to cascade a change on the first radios to the lower ones, you can call the change event directly with: const event = new Event('change'); element.dispatchEvent(event); Whenever you see that the target element already has a value set. This works like a recursive call: const inputs = document.querySelectorAll("input[type=radio]"); for (let inp of inputs){ inp.addEventListener("change", function(){ let targetLabel = document.getElementById(inp.dataset.target); let targetRadio = targetLabel.previousSibling; targetRadio.value = inp.value; targetLabel.innerHTML = inp.value; //if this isn't the last and it's checked, to not cascade non selected radios if (targetRadio.hasAttribute && targetRadio.checked){ const nextTargetLabel = document.getElementById(targetRadio.dataset.target); if (nextTargetLabel.innerHTML != ''){ //if it has a value then cascade targetRadio.dispatchEvent(new Event('change')); } } }); } <p>First Round</p> <div id="round1"> <input type="radio" name="g1" id="i1" value="#1" data-target="r9"><label id="r1">#1</label> <input type="radio" name="g1" id="i2" value="#8" data-target="r9"><label id="r2">#8</label><br> <input type="radio" name="g2" id="i3" value="#4" data-target="r10"><label id="r3">#4</label> <input type="radio" name="g2" id="i4" value="#5" data-target="r10"><label id="r4">#5</label><br> <input type="radio" name="g3" id="i5" value="#3" data-target="r11"><label id="r5">#3</label> <input type="radio" name="g3" id="i6" value="#6" data-target="r11"><label id="r6">#6</label><br> <input type="radio" name="g4" id="i7" value="#7" data-target="r12"><label id="r7">#7</label> <input type="radio" name="g4" id="i8" value="#2" data-target="r12"><label id="r8">#2</label><br> </div> <br> <p>Second Round</p> <div id="round2"> <input type="radio" name="g5" id="i9" data-target="r13"><label id="r9"></label> <input type="radio" name="g5" id="i10" data-target="r13"><label id="r10"></label><br> <input type="radio" name="g6" id="i11" data-target="r14"><label id="r11"></label> <input type="radio" name="g6" id="i12" data-target="r14"><label id="r12"></label><br> </div> <br> <p>Finals</p> <div id="round3"> <input type="radio" name="g7" id="i13" data-target="r15"><label id="r13"></label> <input type="radio" name="g7" id="i14" data-target="r15"><label id="r14"></label><br> </div> <br> <p>Winner</p> <div id="round4"> <label value="#8" id="r15"></label><br> </div> <br> Edit: To clear the following radios instead of cascading the values you can use a while, and navigating with the targets until you reach the end: const inputs = document.querySelectorAll("input[type=radio]"); for (let inp of inputs){ inp.addEventListener("change", function(){ let targetLabel = document.getElementById(inp.dataset.target); let targetRadio = targetLabel.previousSibling; targetLabel.innerHTML = inp.value; targetRadio.value = inp.value; //while there is a next target clear it while (targetLabel.previousSibling.hasAttribute){ targetLabel = document.getElementById(targetRadio.dataset.target); targetRadio = targetLabel.previousSibling; targetRadio.checked = false; targetLabel.innerHTML = ''; } }); } <p>First Round</p> <div id="round1"> <input type="radio" name="g1" id="i1" value="#1" data-target="r9"><label id="r1">#1</label> <input type="radio" name="g1" id="i2" value="#8" data-target="r9"><label id="r2">#8</label><br> <input type="radio" name="g2" id="i3" value="#4" data-target="r10"><label id="r3">#4</label> <input type="radio" name="g2" id="i4" value="#5" data-target="r10"><label id="r4">#5</label><br> <input type="radio" name="g3" id="i5" value="#3" data-target="r11"><label id="r5">#3</label> <input type="radio" name="g3" id="i6" value="#6" data-target="r11"><label id="r6">#6</label><br> <input type="radio" name="g4" id="i7" value="#7" data-target="r12"><label id="r7">#7</label> <input type="radio" name="g4" id="i8" value="#2" data-target="r12"><label id="r8">#2</label><br> </div> <br> <p>Second Round</p> <div id="round2"> <input type="radio" name="g5" id="i9" data-target="r13"><label id="r9"></label> <input type="radio" name="g5" id="i10" data-target="r13"><label id="r10"></label><br> <input type="radio" name="g6" id="i11" data-target="r14"><label id="r11"></label> <input type="radio" name="g6" id="i12" data-target="r14"><label id="r12"></label><br> </div> <br> <p>Finals</p> <div id="round3"> <input type="radio" name="g7" id="i13" data-target="r15"><label id="r13"></label> <input type="radio" name="g7" id="i14" data-target="r15"><label id="r14"></label><br> </div> <br> <p>Winner</p> <div id="round4"> <label value="#8" id="r15"></label><br> </div> <br>
JavaScript to create a global radio button for all subsequent radio buttons?
I have this set of labels and radio buttons that look like this: Entertainment: <input type="radio" name="entertainment" id="entertainment" value="0" checked/> <input type="radio" name="entertainment" id="entertainment" value="1" /> <input type="radio" name="entertainment" id="entertainment" value="2" /><br /> Radio: <input type="radio" name="radio" id="radio" value="0" checked/> <input type="radio" name="radio" id="radio" value="1" /> <input type="radio" name="radio" id="radio" value="2" /><br /> Dancing: <input type="radio" name="dancing" id="dancing" value="0" checked/> <input type="radio" name="dancing" id="dancing" value="1" /> <input type="radio" name="dancing" id="dancing" value="2" /><br /> Music: <input type="radio" name="music" id="music" value="0" checked/> <input type="radio" name="music" id="music" value="1" /> <input type="radio" name="music" id="music" value="2" /><br /> Television: <input type="radio" name="tv" id="tv" value="0" checked/> <input type="radio" name="tv" id="tv" value="1" /> <input type="radio" name="tv" id="tv" value="2" /><br /> Film: <input type="radio" name="film" id="film" value="0" checked/> <input type="radio" name="film" id="film" value="1" /> <input type="radio" name="film" id="film" value="2" /><br /> Theatre: <input type="radio" name="theatre" id="theatre" value="0" checked/> <input type="radio" name="theatre" id="theatre" value="1" /> <input type="radio" name="theatre" id="theatre" value="2" /> The idea is that the three 'Entertainment' radio buttons at the top control all the radio buttons below. A 'global switch', if you will, to save people time. Does anyone know the necessary JavaScript/jQuery to accomplish this? I can't find a correct example online.
$(':radio[name=entertainment]').change(function() { $(this).nextAll(':radio[value="'+ this.value +'"]').prop('checked', true); $(this).nextAll(':radio[value!="'+ this.value +'"]').prop('checked', false); }); Working sample Note ids should be unique.
Traverse object and return matching key / values
I have a series of objects containing product information that I need to use to filter the available product options. (i.e. Customer selects radio button with value option id 25, I need to filter the other two options based on what's available for id 25 and then get the value for that three part combination from configurations (25 / 1 / 13) and find that combination in siblings to return the sku value (25 / 1/ 13 = 1761). I've been successful at getting the keys and values but not matching. I'm a total n00b with javascript (most of my experience is just animating things with jQuery) so I'm not sure that I have written anything worthwhile so far. Here's what I get from the encoded JSON (trimmed b/c data is massive so formatting might not be exact). I don't have any control over formatting and structure of the JSON. var configurations = { "lens_types":{ "25":{ "1":1, "2":2, "4":4, "3":3}}, "lenses":{ "25":{ "1":{ "2":2, "4":4, "5":5, "6":6, "9":9, "13":13}, "2":{ "4":4, "5":5, "6":6, "13":13}}} var siblings = { "25":{ "1":{ "2":1744, "4":1745, "5":1747}, "6":1749, "9":1752, "13":1761}, "2":{ "4":1746, "5":1748, "6":1750, "13":1762}, "4":{ "1":1753, "3":1756, "8":1759}, "3":{ "2":1754, "3":1755, "8":1757, "9":1758, "12":1760}}} This is the generic structure of the product form: <form method="post" action="" name="product_details"> <div id="frame_style"> <input type="radio" name="frame_style" value="1" /> <input type="radio" name="frame_style" value="3" /> <input type="radio" name="frame_style" value="11" /> <input type="radio" name="frame_style" value="24" /> <input type="radio" name="frame_style" value="25" /> <input type="radio" name="frame_style" value="27" /> <input type="radio" name="frame_style" value="2" /> <input type="radio" name="frame_style" value="8" /> <input type="radio" name="frame_style" value="45" /> <input type="radio" name="frame_style" value="77" /> <input type="radio" name="frame_style" value="89" /> <input type="radio" name="frame_style" value="13" /> </div> <div id="lens_type"> <input type="radio" name="lens_type" value="1" /> <input type="radio" name="lens_type" value="2" /> <input type="radio" name="lens_type" value="3" /> <input type="radio" name="lens_type" value="4" /> </div> <div id="lens_style"> <input type="radio" name="lens_style" value="1" /> <input type="radio" name="lens_style" value="2" /> <input type="radio" name="lens_style" value="3" /> <input type="radio" name="lens_style" value="4" /> <input type="radio" name="lens_style" value="5" /> <input type="radio" name="lens_style" value="8" /> <input type="radio" name="lens_style" value="9" /> <input type="radio" name="lens_style" value="12" /> </div> </form> Any ideas? Thanks!! Edit Here's the full object for both: var configurations = {"lens_types":{"25":{"1":1,"2":2,"4":4,"3":3},"1":{"1":1,"2":2,"4":4,"3":3},"15":{"1":1,"2":2,"3":3},"26":{"1":1,"2":2,"3":3},"24":{"1":1,"2":2,"4":4,"3":3},"27":{"1":1,"2":2,"4":4,"3":3},"11":{"1":1,"2":2,"4":4,"3":3},"3":{"1":1,"2":2,"4":4,"3":3}}, "lenses":{"25":{"1":{"2":2,"4":4,"5":5,"6":6,"9":9,"13":13},"2":{"4":4,"5":5,"6":6,"13":13},"4":{"1":1,"3":3,"8":8},"3":{"2":2,"3":3,"8":8,"9":9,"12":12}},"1":{"1":{"2":2,"4":4,"5":5,"6":6,"9":9,"13":13},"2":{"4":4,"5":5,"6":6,"13":13},"4":{"1":1,"3":3,"8":8},"3":{"2":2,"3":3,"8":8,"9":9,"12":12}},"15":{"1":{"2":2,"4":4,"5":5,"6":6,"9":9,"13":13},"2":{"4":4,"5":5,"6":6,"13":13},"3":{"2":2,"3":3,"8":8,"9":9}},"26":{"1":{"2":2,"4":4,"5":5,"6":6,"9":9,"13":13},"2":{"4":4,"5":5,"6":6,"13":13},"3":{"2":2,"3":3,"8":8,"9":9}},"24":{"1":{"2":2,"4":4,"5":5,"6":6,"9":9,"13":13},"2":{"4":4,"5":5,"6":6,"13":13},"4":{"1":1,"3":3,"8":8},"3":{"2":2,"3":3,"8":8,"9":9,"12":12}},"27":{"1":{"2":2,"4":4,"5":5,"6":6,"9":9,"13":13},"2":{"4":4,"5":5,"6":6,"13":13},"4":{"1":1,"3":3,"8":8},"3":{"2":2,"3":3,"8":8,"9":9,"12":12}},"11":{"1":{"2":2,"4":4,"5":5,"6":6,"9":9,"13":13},"2":{"4":4,"5":5,"6":6,"13":13},"4":{"1":1,"3":3,"8":8},"3":{"2":2,"3":3,"8":8,"9":9,"12":12}},"3":{"1":{"2":2,"4":4,"5":5,"9":9},"2":{"4":4,"5":5,"6":6},"4":{"1":1,"3":3,"8":8},"3":{"2":2,"3":3,"8":8,"9":9,"12":12}}}} var siblings = {"25":{"1":{"2":1744,"4":1745,"5":1747,"6":1749,"9":1752,"13":1761},"2":{"4":1746,"5":1748,"6":1750,"13":1762},"4":{"1":1753,"3":1756,"8":1759},"3":{"2":1754,"3":1755,"8":1757,"9":1758,"12":1760}},"1":{"1":{"2":1769,"4":1770,"5":1772,"6":1774,"9":1777,"13":1786},"2":{"4":1771,"5":1773,"6":1775,"13":1787},"4":{"1":1778,"3":1781,"8":1784},"3":{"2":1779,"3":1780,"8":1782,"9":1783,"12":1785}},"15":{"1":{"2":1794,"4":1795,"5":1797,"6":1799,"9":1802,"13":1807},"2":{"4":1796,"5":1798,"6":1800,"13":1808},"3":{"2":1803,"3":1804,"8":1805,"9":1806}},"26":{"1":{"2":1809,"4":1810,"5":1812,"6":1814,"9":1817,"13":1822},"2":{"4":1811,"5":1813,"6":1815,"13":1823},"3":{"2":1818,"3":1819,"8":1820,"9":1821}},"24":{"1":{"2":1824,"4":1825,"5":1827,"6":1829,"9":1832,"13":1841},"2":{"4":1826,"5":1828,"6":1830,"13":1842},"4":{"1":1833,"3":1836,"8":1839},"3":{"2":1834,"3":1835,"8":1837,"9":1838,"12":1840}},"27":{"1":{"2":1843,"4":1844,"5":1846,"6":1848,"9":1851,"13":1860},"2":{"4":1845,"5":1847,"6":1849,"13":1861},"4":{"1":1852,"3":1855,"8":1858},"3":{"2":1853,"3":1854,"8":1856,"9":1857,"12":1859}},"11":{"1":{"2":1862,"4":1863,"5":1865,"6":1867,"9":1870,"13":1879},"2":{"4":1864,"5":1866,"6":1868,"13":1880},"4":{"1":1871,"3":1874,"8":1877},"3":{"2":1872,"3":1873,"8":1875,"9":1876,"12":1878}},"3":{"1":{"2":1881,"4":1882,"5":1884,"9":1888},"2":{"4":1883,"5":1885,"6":1886},"4":{"1":1889,"3":1892,"8":1895},"3":{"2":1890,"3":1891,"8":1893,"9":1894,"12":1896}}}
You could do something like: $('#frame_style input:radio').click(function(){ var val = $(this).val(); for ( var ind in configurations['lenses'][val]){ var input = '<input type="radio" name="lens_type" value="'+ind+'" >'+ind; $('#lens_type').append(input); } }); $('#lens_type input:radio').live('click', function(){ var frame = $('#frame_style input:radio:checked').val(); var val = $(this).val(); for ( var ind in configurations['lenses'][frame][val]){ var input = '<input type="radio" name="lens_style" value="'+ind+'" >'+ind; $('#lens_style').append(input); } }); $('#lens_style input:radio').live('click', function(){ var frame = $('#frame_style input:radio:checked').val(); var type = $('#lens_type input:radio:checked').val(); var style = $(this).val() alert('Sku is:'+siblings[frame][type][style]); }); the idea is to create the radios after the user select the first level. Of course this is very basic, you can try this fiddle: http://jsfiddle.net/LL3SM/ and choos 25, 1, 2 you will get an alert with the sku