How to create a standard combobox (select) in jquery ui style?

1 answer

If I understand that you essentially do not want to enter the user, and the values โ€‹โ€‹must be changed, click the button or text box. To do this, you can use the "readonly" attribute as follows:

input.attr("readonly", true); 

Of course, you implement your widget and customize it using the plugin options.

+1
source

All Articles