I have large list of the drop-down menu. Some of the option have very large text. and I want to make the width of the selected element as per the selected option.
If the selected option is "Selected" then width should be like 120px or something.
When user select "Very Large Selected option" then widht of the <select>
tag should be increase.
Here is the sample code, what I am trying to do.
I have large list of the drop-down menu. Some of the option have very large text. and I want to make the width of the selected element as per the selected option.
If the selected option is "Selected" then width should be like 120px or something.
When user select "Very Large Selected option" then widht of the <select>
tag should be increase.
Here is the sample code, what I am trying to do. http://jsbin./axaka4/edit
Share Improve this question edited Jun 17, 2011 at 12:19 roryf 30.2k17 gold badges83 silver badges105 bronze badges asked Jun 17, 2011 at 12:08 Wasim ShaikhWasim Shaikh 7,04018 gold badges62 silver badges88 bronze badges 1- See also stackoverflow./questions/20091481/… – rogerdpack Commented Apr 21, 2017 at 19:17
2 Answers
Reset to default 13Using some cheating you could clone content of the selected option, measure it's width and resize select to this width like this:
$('select').change(function(){
var $opt = $(this).find("option:selected");
var $span = $('<span>').addClass('tester').text($opt.text());
$span.css({
'font-family' : $opt.css('font-family'),
'font-style' : $opt.css('font-style'),
'font-weight' : $opt.css('font-weight'),
'font-size' : $opt.css('font-size')
});
$('body').append($span);
// The 30px is for select open icon - it may vary a little per-browser
$(this).width($span.width()+30);
$span.remove();
});
$('select').change();
A working fiddle here
i have not tested it but i think this should work.i am assuming you have multiselect dropdown
$("selectId").change(function () {
$("selectid option:selected").each(function () {
str = $(this).width();
$('#selectId').width(str);
});
});