How to change the width of select box in jquery or in html?
In HTML
<select name="foo" style="width:30px;">
<option>one</option>
<option>two</option>
<option>three</option>
</select>
In Jquery
$('#Id').width(30);
use css()
.
$('select').css({'width': 200});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With