Hide Option Select Value Based On Option Value Selected On First Options April 21, 2024 Post a Comment I have two select option field. TypeSolution 1: You can use jquery$(document).ready(function(){ $('#ostatus').on('change',function() { if($(this).val()== 'Ghost'){ $('#oupg') .find ("option[value=Retail]").hide(); $('#oupg') .find ("option[value=Prepaid]").hide(); } else{ $('#oupg') .find ("option[value=Retail]").show(); $('#oupg') .find ("option[value=Prepaid]").show(); } }); }); CopySolution 2: Using Javascript and display:none css styling you can accomplish this:<head><scripttype="text/javascript">functionhideOpt() { var type = document.getElementById("ostatus"); var upgrade = document.getElementById("oupg"); if (type.options[type.selectedIndex].value == 'Ghost') { upgrade.options[3].style.display = 'none'; upgrade.options[4].style.display = 'none'; // IE exception upgrade.options[3].disabled = true; upgrade.options[4].disabled = true; } else { upgrade.options[3].style.display = 'block'; upgrade.options[4].style.display = 'block'; // IE exception upgrade.options[3].disabled = false; upgrade.options[4].disabled = false; } } </script></head><label>Type</label><selectname="ostatus"id="ostatus"onchange="return hideOpt();"class="input-small"><optionvalue="Actual">Actual</option><optionvalue="Ghost">Ghost</option></select><label>Upgrade</label><selectname="oupg"id="oupg"class="input-small"><optionvalue="Exp" >Exp</option><optionvalue="Post" >Post</option><optionvalue="Upgrade" >Upg</option><optionvalue="Retail" >Retail</option><optionvalue="Prepaid" >Prepaid</option></select>CopyEdit:Added else statement to show the options again when 'Actual' is selected.Solution 3: You can't hide option elements in all browsers, but you can disable them:document.querySelector("#oupg option[value=Retail]").disabled = true; document.querySelector("#oupg option[value=Prepaid]").disabled = true; CopyThis will work in IE8 and up.If you want IE7 and lower support, then:var opts = document.getElementById("oupg").options; opts[opts.length - 2].disabled = true; opts[opts.length - 1].disabled = true; Copy Share Post a Comment for "Hide Option Select Value Based On Option Value Selected On First Options" Top Question Trying To Grab URL Parameters, And POST Them With Form I am trying to get a landing page grab the URL parameters. … Are Deferred Scripts Executed Before DOMContentLoaded Event? Upon defer attribute MDN says: This Boolean attribute is s… How To Fetch Data Over Multiple Pages? My project is based on React, redux, redux-saga, es6 and I … JavaScript Image Slider That Will Allow More Slides To Be Added After Page Load I am currently building an image slider page. The slider lo… JavaScript: Hide Button Link If Input Field Is Empty I am trying to hide a button link (id='btnsubmit') … Auto Width Scroll Bar In Google Chart I using the Google Chart for in my HTML5 Project. which tak… Persistent HTML Outside Of JQuery Mobile Pages I want to include a bit of HTML outside of the element on … CSS Column-count Elements Jumping Across Columns I'm trying to get a dynamic amount of elements to show … How To Make Keypress Event Of Asp Textbox? Hi all i am writing calculation of varius asp textbox contr… LastModified() Function Returns Current Date And Time My question is : why when I use 'document.lastModified&… December 2024 (1) November 2024 (39) October 2024 (63) September 2024 (22) August 2024 (215) July 2024 (181) June 2024 (437) May 2024 (706) April 2024 (446) March 2024 (907) February 2024 (870) January 2024 (824) December 2023 (929) November 2023 (375) October 2023 (526) September 2023 (294) August 2023 (313) July 2023 (258) June 2023 (340) May 2023 (210) April 2023 (133) March 2023 (138) February 2023 (114) January 2023 (266) December 2022 (133) November 2022 (234) October 2022 (165) September 2022 (169) August 2022 (484) July 2022 (308) June 2022 (281) Menu Halaman Statis Beranda © 2022 - javascript dox