Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 answers

573 users

How to get the HTML select option tag text in JavaScript

1 Answer

0 votes
<select id="select_id">
    <option hidden>Select Option</option>
    <option value="javascript">javascript text</option>
    <option value="php">php text</option>
    <option value="css">css text</option>
    <option value="html">html text</option>
</select>
const so = document.getElementById('select_id');

so.addEventListener('change', ()=>{
    console.log(so.options[so.selectedIndex].text);
});



    
    
/*
run:
    
"javascript text"
"php text"
    
*/

 



answered Jun 13, 2021 by avibootz
...