Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 0.20 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $(selector).each(function()
  2.         {
  3.                 if ($(this).text().search(new RegExp(query, "i")) < 0)
  4.                 {
  5.                         $(this).hide().removeClass('visible')
  6.                 }
  7.  
  8.                 else
  9.                 {
  10.                         $(this).show().addClass('visible');  
  11.                 }
  12.         });