
22/01/2015, 14:09
|
 | | | Fecha de Ingreso: enero-2006
Mensajes: 198
Antigüedad: 19 años, 2 meses Puntos: 1 | |
Respuesta: unir funciones jquery Sugerencias?????
Solucionado, todo era cuestion de usa el ID de tbody
<table width="950" border="1" id="filtro_ajax">
<tbody id="search_list">
j(function() {
function showProducts(minPrice, maxPrice) {
j("#search_list tr").hide().filter(function() {
var price = parseInt(j(this).data("price"), 10);
return price >= minPrice && price <= maxPrice;
}).show();
} |