Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <script>
  2. $('.sliderArrow').on('click', '.toPageButton', function(){
  3. $.ajax({
  4. url: '/catalog/controller/product/category.php',
  5. type: "get",
  6. data: $('.toPageButton').attr('href') ,
  7. success: function(data){
  8. alert(data);
  9. },
  10. error: function()
  11. {}
  12. });
  13. });
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement