Is it possible to set the width of a jQuery autocomplete combobox?

后端 未结 14 2269

I am using this jQuery UI combobox autocomplete control out of the box off the jQuery UI website:

My issue is that I have multiple comboboxes on a page, and I want t

14条回答
  •  一向
    一向 (楼主)
    2020-12-28 14:46

    Simply use the jQuery CSS method:

    css("width", "300px");
    

    http://api.jquery.com/css/#css2

    You can append this after adding your combobox.

    How do you use the combobox in your code?

提交回复
热议问题