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

149
Views
Cómo mostrar solo la coincidencia de subtexto de datos con un valor de opción seleccionado - jQuery

Tengo un menú desplegable que se parece a lo siguiente:

 <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>

¿Cómo muestro solo los productos que coinciden con el subtexto de datos con su valor de categoría?

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

0

Necesita ocultarlo y mostrarlo en función del valor seleccionado

 $('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!