Search
 
SCRIPT & CODE EXAMPLE
 

HTML

how to set option size to select in html css

$('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()
Comment

how to set option size to select in html css

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<select>
  <option>Select your University</option>
  <option>Bangladesh University of Engineering and Technology</option>
  <option>Mawlana Bhashani Science and Technology University</option>
</select>
 Run code snippetHide results
Comment

PREVIOUS NEXT
Code Example
Html :: boots form 
Html :: vue if 
Html :: ubuntu 16.04 vmware 
Html :: how to make text bold in html 
Html :: how to auto fit image in div 
Html :: HTML Regression 
Html :: show description on hover 
Html :: rich text editor mvc razor 
Html :: website design codes 
Html :: html front page 
Html :: how to make a head tag in html into a child element 
Html :: nunjucks escape brackets 
Html :: html script source 
Html :: what is uniswap 
Html :: How to create collapsable using pure Javascript 
Html :: display string on anchor tag onclick display image in new window html 
Html :: prop sent via link has no spaces vuejs 
Html :: html code for birthday wishes 
Html :: link href to a class on another page 
Html :: how to alert in http 
Html :: see emoji flag on desktop 
Html :: insert html in word 
Html :: vue children not reload route params change 
Html :: How to display data from database in HTML 
Html :: accident news report 
Html :: como remover primeiro elemento de um array javascript 
Html :: how to disable past date in input type date 
Html :: does redux has a unidirectional data flow? 
Html :: how to create html file in android programmatically 
Html :: kanaankanaan123 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =