How Can I Change The Value Of Checkbox When I Select A Value From Select Input With Js November 25, 2024 Post a Comment i want to learn that when i select a value from select input how can i change the value of checkbox. Solution 1: Why would you want to?Anyway:window.addEventListener("load", function() { // on page loaddocument.getElementById("myselectbox1").addEventListener("change", function() { document.getElementById("mycheckbox1").value = this.value; }); document.getElementById("mycheckbox1").addEventListener("change", function() { console.log(this.value); }); });Copy<inputtype="checkbox"name="id"value=""id="mycheckbox1"><selectname="cat-1"id="myselectbox1"><optionvalue="">Choose</option><optionvalue="100">Value1</option><optionvalue="200">Value2</option></select>CopySolution 2: functionupdateCheckbox() { var val = document.getElementById("myselectbox1").value; document.getElementById("mycheckbox1").checked = true; document.getElementById("mycheckbox1").value = val; }Copy<inputtype="checkbox"name="id"value=""id="mycheckbox1"><selectonChange="updateCheckbox()"name="cat-1"id="myselectbox1"><optionselecteddisabled>Choose</option><optionvalue="100">Value1</option><optionvalue="200">Value2</option></select>CopySolution 3: may i ask one more questioni changed my checkbox value if i have one more select input which id cat-2 how can i change name of cat-2 to chosen value of cat-1For example; if i choose value1 ( its value=100) i want to change name of cat-2 to cat-100``` <inputtype="checkbox"name="id"value=""id="mycheckbox1"><selectname="cat-1"id="myselectbox1"><optionvalue="">Choose</option><optionvalue="100">Value1</option><optionvalue="200">Value2</option></select><selectname="cat-2"id="myselectbox2"><optionvalue="">Choose</option><optionvalue="300">Value3</option><optionvalue="400">Value4</option></select> ``` Copy Share Post a Comment for "How Can I Change The Value Of Checkbox When I Select A Value From Select Input With Js" Top Question Show/hide Div Section Based On Where The Page Is Redirected From? I have two php files which redirect like this `header('… SetInterval Slows Down With Tab/window Inactive I build a web app and I use setInterval with 500ms timer fo… Compare Two Arrays Based On Length: Skip Empty Values I have a form with 4 input (can be even many more) where th… Weird Behavior Of Long Presses In Chrome And Firefox For Android So, I found some weird behavior of long presses in Chrome a… JavaScript: How To Force Image() Not To Use The Browser Cache? If I load the nextimg URL manually in the browser, it gives… How Do Js Animations Work? Im trying to understand how to make a javascript animation … Extracting Data From Json Object In JQuery Or JS I want to use the currency data provided by https://raw.git… Show/hide Form Contents Based On Radio Selections Im building a form that has conditional fields that need to… JavaScript Selector By Class Prefix? in CSS, we can select multiple classes with same prefix lik… JQuery - Renaming Checkboxes Sets Consecutively I'm trying to build a form to allow multiple elements (… December 2024 (1) November 2024 (40) October 2024 (69) September 2024 (19) August 2024 (217) July 2024 (200) June 2024 (430) May 2024 (699) April 2024 (479) March 2024 (930) February 2024 (970) January 2024 (882) December 2023 (877) November 2023 (398) October 2023 (557) September 2023 (288) August 2023 (334) July 2023 (272) June 2023 (379) May 2023 (231) April 2023 (134) March 2023 (142) February 2023 (163) January 2023 (287) December 2022 (132) November 2022 (231) October 2022 (175) September 2022 (162) August 2022 (501) July 2022 (304) June 2022 (313) Menu Halaman Statis Beranda © 2022 - JavaScript Guide