DropDownList SelectedItem Javascript

  • Thread starter Thread starter Alper ÖZGÜR
  • Start date Start date
A

Alper ÖZGÜR

Hi;
I can read the selectedvalue of dropdownlist by javascript using
this.value...
How can i get the selectedItem.text by javascript?
 
Alper,

this.options[this.selectedIndex].value

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
 
It returns the SelectedValue... Not SelectedText.....

haber said:
Alper,

this.options[this.selectedIndex].value

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
Alper ÖZGÜR said:
Hi;
I can read the selectedvalue of dropdownlist by javascript using
this.value...
How can i get the selectedItem.text by javascript?
 
Alper,

Sorry about that. I forgot to switch it from some of my code I copy and
pasted. It's pretty simple really. Just switch value to text.

this.options[this.selectedIndex].text

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
Alper ÖZGÜR said:
It returns the SelectedValue... Not SelectedText.....

haber said:
Alper,

this.options[this.selectedIndex].value

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
Alper ÖZGÜR said:
Hi;
I can read the selectedvalue of dropdownlist by javascript using
this.value...
How can i get the selectedItem.text by javascript?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top