Reputation: 1181
I've got this select
element with different option
in it. Normally the select
element would get its width from the biggest option
element, but I want the select
element to have the default option
value's width which is shorter. When the user selects another option
, the select
element should resize itself so the whole text is always visible in the element.
$(document).ready(function() {
$('select').change(function(){
$(this).width($('select option:selected').width());
});
});
Problem:
Upvotes: 41
Views: 109013
Reputation: 3252
There's no need for JQuery or a permanent invisible <select>
within your DOM:
None of the other vanilla JavaScript answers worked 100% correctly in all cases. This method takes many things into account such as font
, padding
, border
, etc.
function resize(event) {
const fakeEl = document.createElement('select');
const option = event.target.options[event.target.selectedIndex];
fakeEl.style.visibility = 'hidden';
fakeEl.style.position = 'absolute';
fakeEl.style.top = '-9999px';
fakeEl.style.left = '-9999px';
fakeEl.style.width = 'auto';
fakeEl.style.font = window.getComputedStyle(event.target).font;
fakeEl.style.padding = window.getComputedStyle(event.target).padding;
fakeEl.style.border = window.getComputedStyle(event.target).border;
const fakeOption = document.createElement('option');
fakeOption.innerHTML = option.innerHTML;
fakeEl.appendChild(fakeOption);
document.body.appendChild(fakeEl);
event.target.style.width = fakeEl.getBoundingClientRect().width + 'px';
fakeEl.remove();
}
for (let e of document.querySelectorAll('select.autoresize')) {
e.onchange = resize;
e.dispatchEvent(new Event('change'));
}
<select class='autoresize'>
<option>Foo</option>
<option>FooBar</option>
<option>FooBarFooBarFooBar</option>
</select>
Upvotes: 0
Reputation: 166
Here's a more modern vanilla JavaScript approach to solve this. It's more or less the same principle as in this answer just without jQuery.
selectedIndex
to the option.position: fixed
and visibility: hidden
styles to the new select element. This ensures, that it is not affecting your layout but its bounding box can still be measured.getBoundingClientRect().width
const select = document.querySelector('select')
select.addEventListener('change', (event) => {
let tempSelect = document.createElement('select'),
tempOption = document.createElement('option');
tempOption.textContent = event.target.options[event.target.selectedIndex].text;
tempSelect.style.cssText += `
visibility: hidden;
position: fixed;
`;
tempSelect.appendChild(tempOption);
event.target.after(tempSelect);
const tempSelectWidth = tempSelect.getBoundingClientRect().width;
event.target.style.width = `${tempSelectWidth}px`;
tempSelect.remove();
});
select.dispatchEvent(new Event('change'));
<select>
<option>Short option</option>
<option>Some longer option</option>
<option>A very long option with a lot of text</option>
</select>
Upvotes: 5
Reputation: 3052
Using OffscreenCanvas to measure selected option text with, and then updating select element with
function updateWidth(el) {
const text = el.selectedOptions[0].text;
const canvas = new OffscreenCanvas(0, 0);
const ctx = canvas.getContext('2d')!;
ctx.font = getComputedStyle(el).font;
const width = ctx.measureText(text).width;
const padding = 35;
el.style.width = width + padding + 'px';
}
const select = document.querySelector('select');
updateSize(select);
select.addEventListener('change', evt => updateSize(evt.target));
Upvotes: 0
Reputation: 11
try this:
const select = $('select');
function calcTextWidth(text, font) {
let canvas = calcTextWidth.canvas || (calcTextWidth.canvas = document.createElement("canvas"));
let context = canvas.getContext("2d");
context.font = font;
let metrics = context.measureText(text);
return metrics.width;
}
select.change(function () {
select.width(calcTextWidth(select.find(":selected").text(), 'normal normal 500 15px sans-serif'));
});
Upvotes: 0
Reputation: 44172
querySelectorAll
to get all the <select>
'svisibility: hidden
element to copy/paste the value to get the widthgetBoundingClientRect
to get the width of the hidden elementdispatchEvent
to trigger the first resizefunction resize(event) {
const fakeEl = document.querySelector('#fakeEl');
const option = event.target.options[event.target.selectedIndex];
fakeEl[0].innerHTML = event.target.value;
event.target.style.width = fakeEl.getBoundingClientRect().width + 'px';
}
for (let e of document.querySelectorAll('select.autoresize')) {
e.onchange = resize;
e.dispatchEvent(new Event('change'));
}
<select class='autoresize'>
<option>Foo</option>
<option>FooBar</option>
<option>FooBarFooBarFooBar</option>
</select>
<select id='fakeEl' style='visibility: hidden'><option></option></select>
Upvotes: 6
Reputation: 10498
I transformed João Pimentel Ferreira's jquery answer to vanilla js for anyone who needs a plain js solution
function changeWidth() {
let ghostSelect = document.createElement('select');
const select = document.getElementById('select');
var x = select.options[select.selectedIndex].text;
const ghostOption = document.createElement("option");
ghostOption.setAttribute("value", x);
var t = document.createTextNode(x);
ghostOption.appendChild(t);
ghostSelect.appendChild(ghostOption);
window.document.body.appendChild(ghostSelect)
select.style.width = ghostSelect.offsetWidth + 'px';
window.document.body.removeChild(ghostSelect)
}
<select id="select" onChange="changeWidth()">
<option value="all">Choose one</option>
<option value="1">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</option>
<option value="2">bbbbbbbbbbbbbbb</option>
<option value="3">cccc</option>
<option value="4">ddd</option>
<option value="5">ee</option>
<option value="6">f</option>
</select>
So what it actually does is that it creates a dummy select with only the selected option, adds it temporarily to the DOM, then calculates the width, sets the original's select
width to the new width and then it removes the dummy select
from the DOM.
Upvotes: 0
Reputation: 1
Here's an example of one way to start with a select box auto sized and then how to auto adjust the width when a new box is selected.
Just copy and paste this into a visual studio code document and call it index.html and double click the file (for super noobs).
$(document).ready(function() {
// Auto set the width of the select box for Manufacture on startup
$("#width_tmp_option").html($('#Manufacture')[0][0].label);
$('#Manufacture').width($('#width_tmp_select').width());
// Adust the width of the select box each time Manufacture is changed
$('#Manufacture').change(function(){
$("#width_tmp_option").html($('#Manufacture option:selected').text());
$(this).width($("#width_tmp_select").width());
});
});
#Manufacture {
font-size:17px;
}
#width_tmp_select{
display : none;
font-size:17px;
}
<!-- JS (Jquery) -->
<script src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
<!-- HTML -->
<!-- These are hidden dummy selects that I use to store some html in them and then retrieve the width to resize my select boxes. -->
<select id="width_tmp_select">
<option id="width_tmp_option"></option>
</select>
<select id="Manufacture">
<option>Toyota</option>
<option>Ford</option>
<option>Lamborghini</option>
</select>
Upvotes: 0
Reputation: 30147
Here's a plugin I just wrote for this question that dynamically creates and destroys a mock span
so it doesn't clutter up your html. This helps separate concerns, lets you delegate that functionality, and allows for easy reuse across multiple elements.
Include this JS anywhere:
(function($, window){
$(function() {
let arrowWidth = 30;
$.fn.resizeselect = function(settings) {
return this.each(function() {
$(this).change(function(){
let $this = $(this);
// get font-weight, font-size, and font-family
let style = window.getComputedStyle(this)
let { fontWeight, fontSize, fontFamily } = style
// create test element
let text = $this.find("option:selected").text();
let $test = $("<span>").html(text).css({
"font-size": fontSize,
"font-weight": fontWeight,
"font-family": fontFamily,
"visibility": "hidden" // prevents FOUC
});
// add to body, get width, and get out
$test.appendTo($this.parent());
let width = $test.width();
$test.remove();
// set select width
$this.width(width + arrowWidth);
// run on start
}).change();
});
};
// run by default
$("select.resizeselect").resizeselect();
})
})(jQuery, window);
You can initialize the plugin in one of two ways:
HTML - Add the class .resizeselect
to any select element:
<select class="btn btn-select resizeselect">
<option>All</option>
<option>Longer</option>
<option>A very very long string...</option>
</select>
JavaScript - Call .resizeselect()
on any jQuery object:
$("select").resizeselect()
(function($, window){
$(function() {
let arrowWidth = 30;
$.fn.resizeselect = function(settings) {
return this.each(function() {
$(this).change(function(){
let $this = $(this);
// get font-weight, font-size, and font-family
let style = window.getComputedStyle(this)
let { fontWeight, fontSize, fontFamily } = style
// create test element
let text = $this.find("option:selected").text();
let $test = $("<span>").html(text).css({
"font-size": fontSize,
"font-weight": fontWeight,
"font-family": fontFamily,
"visibility": "hidden" // prevents FOUC
});
// add to body, get width, and get out
$test.appendTo($this.parent());
let width = $test.width();
$test.remove();
// set select width
$this.width(width + arrowWidth);
// run on start
}).change();
});
};
// run by default
$("select.resizeselect").resizeselect();
})
})(jQuery, window);
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.js"></script>
<select class="resizeselect">
<option>All</option>
<option>Longer</option>
<option>A very very long string...</option>
</select>
Updated to include sizing suggestions from Garywoo & Eric Warnke
Upvotes: 21
Reputation: 1
Here is how I've achieved the following behavior:
On document load: The select's width is already based on the width of the selected option (repainting does not occur).
On change: The select's width is updated to the width of the newly selected option.
/* WIDTH, ADJUSTMENT, CONTENT BASED */
$( document ).on( 'change', '.width-content-based', function(){
let text_modified_font;
let text_modified_string;
let descendants_emptied_elements;
text_modified_font =
$( this ).css( 'font-weight' ) + ' ' + $( this ).css( 'font-size' ) + ' ' + $( this ).css( 'font-family' );
if
(
$( this ).is( 'select' )
)
{
text_modified_string =
$( this ).find( ':selected' ).text();
descendants_emptied_elements =
$( this ).find( '[data-text]' );
}
else
{
text_modified_string =
$( this ).val();
}
$( this ).css( { 'width': text_width_estimate( text_modified_string, text_modified_font ) + 'px' } );
if
(
descendants_emptied_elements.length
)
{
descendants_emptied_elements.each( function(){
$( this ).text( $( this ).attr( 'data-text' ) ).removeAttr( 'data-text' );
});
}
});
/* DOCUMENT, ON READY */
$( document ).ready( function(){
$( '.width-content-based' ).trigger( 'change' );
});
/* TEXT WIDTH ESTIMATE */ function text_width_estimate( text, font ) { let canvas = text_width_estimate.canvas || ( text_width_estimate.canvas = document.createElement( 'canvas' ) ); let context = canvas.getContext( '2d' ); context.font = font; let metrics = context.measureText( text ); return metrics.width + 3; }
select { -webkit-appearance: none; }
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<select class="width-content-based">
<option value="AF" data-text="Afghanistan"></option>
<option value="AX" data-text="Åland Islands"></option>
<option value="AL" selected>Albania</option>
</select>
Upvotes: 0
Reputation: 16292
This working solution makes use here of a temporary auxiliary select
into which the selected option from the main select is cloned, such that one can assess the true width which the main select
should have.
The nice thing here is that you just add this code and it's applicable to every selects, thus no need to ids
and extra naming.
$('select').change(function(){
var text = $(this).find('option:selected').text()
var $aux = $('<select/>').append($('<option/>').text(text))
$(this).after($aux)
$(this).width($aux.width())
$aux.remove()
}).change()
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<select>
<option>REALLY LONG TEXT, REALLY LONG TEXT, REALLY LONG TEXT</option>
<option>ABCDEFGHIJKL</option>
<option>ABC</option>
</select>
Upvotes: 13
Reputation: 21
Here's yet another plain jQuery solution:
$('#mySelect').change(function(){
var $selectList = $(this);
var $selectedOption = $selectList.children('[value="' + this.value + '"]')
.attr('selected', true);
var selectedIndex = $selectedOption.index();
var $nonSelectedOptions = $selectList.children().not($selectedOption)
.remove()
.attr('selected', false);
// Reset and calculate new fixed width having only selected option as a child
$selectList.width('auto').width($selectList.width());
// Add options back and put selected option in the right place on the list
$selectedOption.remove();
$selectList.append($nonSelectedOptions);
if (selectedIndex >= $nonSelectedOptions.length) {
$selectList.append($selectedOption);
} else {
$selectList.children().eq(selectedIndex).before($selectedOption);
}
});
Upvotes: 1
Reputation: 6439
You are right there is no easy or built-in way to get the size of a particular select option. Here is a JsFiddle that does what you want.
It is okay with the latest versions of Chrome, Firefox, IE, Opera and Safari
.
I have added a hidden select #width_tmp_select
to compute the width of the visible select #resizing_select
that we want to be auto resizing. We set the hidden select to have a single option, whose text is that of the currently-selected option of the visible select. Then we use the width of the hidden select as the width of the visible select. Note that using a hidden span instead of a hidden select works pretty well, but the width will be a little off as pointed out by sami-al-subhi in the comment below.
$(document).ready(function() {
$('#resizing_select').change(function(){
$("#width_tmp_option").html($('#resizing_select option:selected').text());
$(this).width($("#width_tmp_select").width());
});
});
#resizing_select {
width: 50px;
}
#width_tmp_select{
display : none;
}
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.js"></script>
<select id="resizing_select">
<option>All</option>
<option>Longer</option>
<option>A very very long string...</option>
</select>
<select id="width_tmp_select">
<option id="width_tmp_option"></option>
</select>
Upvotes: 50
Reputation: 37
Try the following simple JavaScript and convert it in jQuery :)
<html><head><title>Auto size select</title>
<script>
var resized = false;
function resizeSelect(selected) {
if (resized) return;
var sel = document.getElementById('select');
for (var i=0; i<sel.options.length; i++) {
sel.options[i].title=sel.options[i].innerHTML;
if (i!=sel.options.selectedIndex) sel.options[i].innerHTML='';
}
resized = true;
sel.blur();
}
function restoreSelect() {
if (!resized) return;
var sel = document.getElementById('select');
for (var i=0; i<sel.options.length; i++) {
sel.options[i].innerHTML=sel.options[i].title;
}
resized = false;
}
</script>
</head>
<body onload="resizeSelect(this.selectedItem)">
<select id="select"
onchange="resizeSelect(this.selectedItem)"
onblur="resizeSelect(this.selectedItem)"
onfocus="restoreSelect()">
<option>text text</option>
<option>text text text text text</option>
<option>text text text </option>
<option>text text text text </option>
<option>text</option>
<option>text text text text text text text text text</option>
<option>text text</option>
</select>
</body></html>
Here is a jsfiddle for it: https://jsfiddle.net/sm4dnwuf/1/
Basically what it does is temporarily remove unselected elements when it is not in focus (causing it to size to just the size of the selected).
Upvotes: 2
Reputation: 111
You can use a simple function:
// Function that helps to get the select element width.
$.fn.getSelectWidth = function() {
var width = Math.round($(this).wrap('<span></span>').width());
$(this).unwrap();
return width;
}
Then just use it on your form select element:
$(this).getSelectWidth();
Upvotes: 1
Reputation: 318
You can try this also
select option{width:0; }
select option:hover{width:auto;}
Upvotes: -4