Last active
May 9, 2023 00:22
-
-
Save joelalejandro/8dbc55f520807673356c9cc38a4eeded to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Caja de búsqueda --> | |
<input type="search" placeholder="Buscar..." data-target="tabla-resultado"> | |
<!-- Tabla de resultados --> | |
<table id="tabla-resultado"> | |
<!-- muchos <TR> con filas --> | |
</table> | |
<!-- Script de búsqueda --> | |
<script> | |
// Busco todos los controles de búsqueda. | |
$('[type="search"]').each(function() { | |
var $buscador = $(this); | |
// Obtengo la referencia a la tabla vinculada a este control de búsqueda. | |
var $tabla = $('#' + $buscador.data('target')); | |
// Cuando se presione una tecla sobre la caja de búsqueda... | |
$buscador.on('keyup', function() { | |
// ...me fijo si está vacío. | |
if ($buscador.val().trim() === '') { | |
// Si está vacío, muestro todas las filas. | |
$('tr', $tabla).show(); | |
} else { | |
// Si no, oculto todas y sólo muestro las que contengan el texto que estoy buscando. | |
$('tr', $tabla).hide(); | |
$('tr:contains("' + $buscador.val() + '")', $tabla).show(); | |
} | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Mil gracias!!!
Fuerte abrazo.
Que tengas un muy buen día.