filter a list by the class name

filter a list by the class name

I want to filter a list by the class name in searchDIV . The $("#searchDIV *").filter works for searching everything but I want just the class name or really the name of <?php echo $partno ?> 

Thanks for the help!
Travis

  1. <input id="searchInput" type="text" placeholder="Search..">

  2.                         <script>
  3.                             $(document).ready(function () {
  4.                                 $("#searchInput").on("keyup", function () {
  5.                                     var value = $(this).val().toLowerCase();
  6.                                     $("#searchDIV *").filter(function () {
  7.                                         $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
  8.                                     });
  9.                                 });
  10.                             });
  11.                         </script>

  12.                         <?php
  13.                         while ($row = mysql_fetch_assoc($results)) {
  14.                             extract($row);
  15.                             ?>
  16.                             <div id="searchDIV" class="<?php echo $partno ?>">
  17.                                 <a class="productByPartNo_select" href="<?php echo $webPage ?>#<?php echo $partno ?>" title="<?php echo $partno ?>">
  18.                                     <div class="productByPartNo_wrapper center">


  19.                                         <div class="productByPartNo_image"><img src="images/products/<?php echo $image ?>_thumb.jpg"/></img></div>
  20.                                         <div class="productByPartNo_description_wrapper">
  21.                                             <div class="product_partno"><h3><?php echo $partno ?></h3></div>
  22.                                             <div class="product_title"><h4><?php echo $title ?></h4>
  23.                                             </div>

  24.                                         </div>

  25.                                     </div></a>
  26.                             </div>
  27.                             <?php
  28.                         }
  29.                         ?>