Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2013
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function() {
  2.     $('.productTag').click(function() {
  3.         $.ajax({
  4.             url: 'assortiment/filter?title=' + $(this).text()
  5.         }).complete(function(data) {
  6.             console.log(data);
  7.             $('div#productList').html(data);
  8.         }).fail(function(jqXHR, textStatus) {
  9.             alert( "Request failed: " + textStatus );
  10.         });
  11.     });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement