Advertisement
Guest User

Untitled

a guest
Jan 25th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. /*----------------------------------------------------*/
  2. /* Isotope Portfolio Filter
  3. /*----------------------------------------------------*/
  4. $(window).load(function(){
  5. $('#portfolio-wrapper').isotope({
  6. itemSelector : '.portfolio-item',
  7. layoutMode : 'fitRows'
  8. });
  9. $('#filters a.selected').trigger("click");
  10. });
  11. $('#filters a').click(function(e){
  12. e.preventDefault();
  13.  
  14. var selector = $(this).attr('data-option-value');
  15. $('#portfolio-wrapper').isotope({ filter: selector });
  16.  
  17. $(this).parents('ul').find('a').removeClass('selected');
  18. $(this).addClass('selected');
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement