You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
I've been loving mixitup and am using it on an in-development client project. I liked the implementation that was used on the Dauphine Press example (http://www.dauphinepress.com/search-by-style/) and decided to use the same select menu-based pattern in my implementation.
Everything was working great until recently when I discovered that making choices via the dropdowns wasn't filtering the elements in IE9. Sorting via button controls still works great, but choosing options in the dropdowns produces no response. I thought it could be just me, but when I went back to the Dauphine Press example, I see the same issue.
Any ideas on how to fix?
Thanks!
The text was updated successfully, but these errors were encountered:
We took at look at the Dauphine Press site in IE9 and it seems to be working fine for us (albeit without the animations).
You can't use dropdowns out of the box with MixItUp because they don't fire a click event when you select an option. They require custom javascript to pull the value of the each time a new is selected. This value is then sent as a string to MixItUp using the 'filter' js method. I would just make sure that whatever output value you are getting from your dropdown, is being fed to the MixItUp filter method correctly. Throw in some console.logs or alerts to your code and check that a value is being sent.
I've been loving mixitup and am using it on an in-development client project. I liked the implementation that was used on the Dauphine Press example (http://www.dauphinepress.com/search-by-style/) and decided to use the same select menu-based pattern in my implementation.
Everything was working great until recently when I discovered that making choices via the dropdowns wasn't filtering the elements in IE9. Sorting via button controls still works great, but choosing options in the dropdowns produces no response. I thought it could be just me, but when I went back to the Dauphine Press example, I see the same issue.
Any ideas on how to fix?
Thanks!
The text was updated successfully, but these errors were encountered: