Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. require(['jquery'], function($){
  2. $(document).ready(function(){
  3. $('.your-pager-items a').on('click', function(evt){
  4. evt.preventDefault();
  5. $.get(evt.currentTarget.href, {}, function(r){
  6. // do something with the response
  7. })
  8. });
  9. });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement