[jQuery] Simple load pagination
I have a simple pagination working which basically loads a page based
on a link I pass it. The link is generated in php as next (link + 1)
or previous (link -1).
<script>
function getinfo(link) {
$("#info").css("cursor","pointer").load(link);
}
</script>
I would like to include a filter bar with various select list (status,
location) which should pass the information to my getinfo() function,
so as to filter the result sets and keep the pagination, however I
have no idea how to go about this?
fleabo