Skip to content

Instantly share code, notes, and snippets.

@sreevardhanreddi
Created April 9, 2019 11:37
Show Gist options
  • Save sreevardhanreddi/c1442c2ce08e5689659a5fc6b4b0d98f to your computer and use it in GitHub Desktop.
Save sreevardhanreddi/c1442c2ce08e5689659a5fc6b4b0d98f to your computer and use it in GitHub Desktop.
<script>
// the anchor tag is the pagination link
$("a[rel='page']").click(function(e){
e.preventDefault();
$('#search_filter').attr("action", $(this).attr("href"));
$('#search_filter').submit();
});
// post to a view function, instead of get
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment