0

I'm using the quickSearch jQuery plug-in: http://lomalogue.com/jquery/quicksearch/

The reason it's not working currently in my app, is that while my search box remains constant, the table does not...

It's a web app, and the table changes. Problem is the QuickSearch plugin will only search with the first table, if I AJAX in new table contents QuickSearch doesnt work, though if I switch back to that first table it works.

Ideas? Thanks!

user479959
  • 507
  • 1
  • 8
  • 17

1 Answers1

1

Have you tried calling it again after the table loads?

$('input#id_search').quicksearch('table#table_example tbody tr');
Chris McCall
  • 10,317
  • 8
  • 49
  • 80
  • I did but that had no effect. Strange right? I'm using it inside a jQuery UI Tabs model, so every tab click loads new contents. Not sure if that could be a problem? – user479959 Oct 20 '10 at 00:26
  • I was using tabsselect, as the bind... I think maybe it's bec that happens before the content is loaded. I need something that happens AFTER – user479959 Oct 20 '10 at 00:29