I've got a webpart that shows a table. This webpart refreshes itself every 15 sec via some ajax POST (from what I see in firebug). I've got no control over this webpart. (SharePoint native)
I'm building some live filtering using jQuery to filter table rows in the webpart. On a button click I'm calling a function that hides all rows that does'nt match the filter criteria.
Question is: How can I rerun my filtering function after the webpart has been updated?
(in the filtering algorithm involves some logic, so I don't think I can get around with a selector that does it.)
Larsi