jquery-selectBox icon indicating copy to clipboard operation
jquery-selectBox copied to clipboard

How can I have 2 or 3 select boxes on the same page?

Open riazu opened this issue 9 years ago • 1 comments

Hi,

I wanna have more than 1 select boxes ion the same page. I tried this... $(function () { $("#durationSelect").selectbox(); $("#minParticipantsSelect").selectbox(); $("#maxParticipantsSelect").selectbox(); }); But it didn't help. Can you please guide me how can I use more than 1 select boxes on single page?

Thanks.

riazu avatar May 02 '16 09:05 riazu

i think it should be something like this actually:

(function($) {
$("#durationSelect").selectBox('enable'); 
$("#minParticipantsSelect").selectBox(''enable');
$("#maxParticipantsSelect").selectBox('enable');
})(jQuery);

Let me know if that helps. I have been using this library for a long time and for me it works. And i really like this library :)

bogdanRada avatar May 23 '16 22:05 bogdanRada