Link to home
Start Free TrialLog in
Avatar of jblayney
jblayneyFlag for Canada

asked on

php jquery list filter breaks if I use dynamic list

I am trying to find a list filter which works with dynamic items.

I found this one online
http://papermashup.com/demos/jquery-list-filter/?#

and it works great until I try to dynamically populate the list from a recordset..

 <?php do { ?>
               
                              
                           <li><?php echo $row_Recordset1['artist_name']; ?></li>
    <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>  

very odd, does anyone have a workaround for this
ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial