I have a table with several dropdowns with different lengths (widths).
I want the shorter dropdowns to have the same widths as the longer ones:
A quick solution is:
.mySel {
width: 35%;
}
But, of course, this is not dynamically.
It there any way to dynamically define the widths of the shorter dropdowns, so that it expands over the entire table cell?
Maybe with jQuery?
