Welcome Guest, Not a member yet? Register   Sign In
How to make Isotope work with multi-filters and sort ascending / descending?
#1

I’m trying to create a multi-filter menu of which one drop-down is to sort by most popular to the least popular.


When I select “most” and “least” from the drop-down for the FIRST TIME, it works as expected. However, when I go to select “most” for a second time, the sort doesn’t work.

Any ideas what might be causing this?

Here’s my code snippet:

// On popular selection
     $( '#popular' ).on('change', 'select', function () {
     var $this = $(this);

     // Get the data-category attribute from the selection made
     var $rank = $this.children('Confusedelected').val();

     // Here's where the code breaks when a user selects a drop-down selection after the first time
     if ($rank === 'most') {
     $cards.isotope({sortBy: 'rank'});
     } else {
       $cards.isotope({sortBy: 'rank', sortAscending: false});
     }
   });



Any ideas what might be causing the issue?
Reply
#2

Maybe this will help not sure.

Confusedelected Selector
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB