![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
22/01/2015, 14:09
|
![Avatar de LoUiMaNiAkO](http://static.forosdelweb.com/customavatars/avatar125188_1.gif) | | | Fecha de Ingreso: enero-2006
Mensajes: 198
Antigüedad: 19 años, 1 mes 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();
} |