Reputation: 1273
After some searching I found that I can make a dropdown menu in rails with the select helper but the problem with it is it makes select tags. Firefox doesn't really like select tags and after looking throguh some of the new bootstrap 3 docs I found a way to make dropdowns with div tags as shown here.
How would I make something like this and still have it work with rails?
Thanks in advance.
Upvotes: 0
Views: 419
Reputation: 5206
I suggest you to use Select2:
Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.
As you will notice it Browser compatibility it "supports" Firefox 10+. Then you can copy the BT3 style if you want.
Upvotes: 1