Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2013
9
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: 'products/assortiment/filter?title=' + $(this).text()
  5.         }).complete(function() {
  6.             $('div#productList').html(data);
  7.         }).fail(function(jqXHR, textStatus) {
  8.             alert( "Request failed: " + textStatus );
  9.         });
  10.     });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement