Is it possible to set the width of a jQuery autocomplete combobox?
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 them to have different widths for each one. I can change the width for ALL of them by adding this CSS: .ui-autocomplete-input { width: 300px; } but I can't figure out a way to change the width on just one of them. Mark A simple $('.ui-autocomplete-input').css('width','300px') works (I tried it on the linked page with Firebug ) to change the first one on the page. You can do something like: $($('.ui-autocomplete-input')[N]).css(