gfranko / jquery.selectBoxIt.js

A jQuery Select Box Plugin for Mobile, Tablet, and Desktop
http://www.selectboxit.com
MIT License
852 stars 301 forks source link

Default dropdown in mobile #265

Closed luigicr closed 10 years ago

luigicr commented 10 years ago

In mobile, the dropdown is the default no matters you use bootstrap or custom styles, it fires the custom device drodown.

gfranko commented 10 years ago

Which mobile browsers are you testing on? It looks like it is firing the native mobile wheel interface to me.

luigicr commented 10 years ago

Yes, that's the problem, I don't want the native mobile, I want to use my custom styles

gfranko commented 10 years ago

Got it. If you want to turn off the mobile behavior, than you can update the isMobile option. Like this:

$("select").selectBoxIt({
  'isMobile': function() {
    return false;
  }
});
luigicr commented 10 years ago

Thank you! I will try