Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

140
Views
How to show only data-subtext matching with a selected option value - jQuery

I have a dropdown menu that looks like the following:

<select name="category" id="category">
    <option value="category-1">category-1</option>
    <option value="category-2">category-3</option>
    <option value="category-3">category-2</option>
</select>

<select name="product" id="product">
    <option data-subtext="category-1">product</option>
    <option data-subtext="category-1">product</option>

    <option data-subtext="category-2">product</option>
    <option data-subtext="category-2">product</option>

    <option data-subtext="category-3">product</option>
    <option data-subtext="category-3">product</option>
</select>

how do I show only products matching data-subtext with its category value?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You need the hide and show it based on the selected value

    $('select[name=category]').on('change', function (event) {
    let selectedValue;
    selectedValue = $(this).find('option:selected').text();
    $('select[name=product] option').filter(function () {
        if ($(this).attr('data-subtext') !== selectedValue) {
            return true;
        } else {
            $(this).show();
            this.selected = true;
        }
    }).hide() 
});
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!