Skip to content
Advertisement

JS category subcategory – hide value from subcat when category is selected [closed]

I got [category] and [subcategory]. If user select [category-option(1)], then hide some value from [subcategory].

This is from school project where we want to have two select options for uploading files, but in some classes like (5th grade some subjects are different from 6th grade). So I thought of this simple idea. Store all classes/subjects in HTML, then if user clicks on 5th grade hide some subjects that they don’t learn. But if user clicks 7gr to display subjects that are learned there.

JavaScript

Advertisement

Answer

You could nest the two arrays, so that each category has its own subcategory. Then you wouldn’t need to hide something. The outer ‘category’ array should be defined as an object (its far easier than an associative array) and the inner ‘subcategory’ arrays could be ordinary indexed arrays.

For example:

JavaScript

If you want to get the ‘subcategory’ array with its entries for the 5th grade you could do:

JavaScript

You can listen to the onchange event of the ‘category’ select. Then you would delete the old options from the ‘sub_category’ select, add for each entry of the subcategory for the selected category a cloned option from the first select and update its value and text.

Working example:

JavaScript
JavaScript

PS: In your html code were double ids (optgroup) – i changed them…

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement