only shows first char of selected option

In my case, I didn’t have an event hook to hide the select before the ajax request fires, so I had to force a redraw of the select element after the fact. Re-applying the existing width seems to work:

$("select").width($("select").width());

Leave a Comment