[jQuery] AJAX search result filtering
Hello
I was thinking of having my search result filters affect data
automatically without reloading the page. What would be the best
approach to this? I was thinking of attaching $.post(); to each
filter checkbox or dropdown to submit that elements input then have
the page update the results table.
Something like this perhaps:
-> use post to send single filter to a page that stores it in a
session ( do this whenever a filter is changed)
-> retrieve all stored filters in the session, fetch results and
update page
Would this be the best approach?
I'd greatly appreciate some suggestions - thanks in advance