Dustin Carpenter

web developer/consultant/tech support

Main menu

Skip to primary content
Skip to secondary content
  • Home
  • About
  • Contact

Category Archives: Snippets

How to get the value of a select box when it changes

Posted on October 25, 2010 by Dustin
Reply

Example of how to take the selected option in a list and pass the value via javascript.

<select onchange="alert(this.options[this.selectedIndex].value);">
	<option value="1">1</option>
	<option value="2">2</option>
	<option value="3">3</option>
	<option value="4">4</option>
	<option value="5">5</option>
</select>
Posted in Snippets | Leave a reply

Archives

  • May 2011
  • October 2010
  • August 2010
  • February 2010

Meta

  • Log in
Proudly powered by WordPress