spenceddd Posted December 28, 2009 Share Posted December 28, 2009 Hi, This is just a quickie, at the moment I can get a numeric value driven by the dropdown selection into a text box using this code in the drop down: <select name="skillsListDropDown" onchange="document.skillsForm.skillField.value=this.choice"> and this code for the text field: <input name="skillField" type="text" size="25"> ...but what I actually want is to get the text from the selected drop down item. You can see the form here: http://www.spencercarpenter.co.uk/portfolioAppFiles/simpleForm.php it is the Manage Skills List section. Thanks in advance. Spencer Link to comment https://forums.phpfreaks.com/topic/186489-how-to-get-text-from-a-drop-down-selection-into-a-text-field/ Share on other sites More sharing options...
rajivgonsalves Posted December 28, 2009 Share Posted December 28, 2009 <select name="skillsListDropDown" onchange="this.form.skillField.value=this[this.selectedIndex].value"> Link to comment https://forums.phpfreaks.com/topic/186489-how-to-get-text-from-a-drop-down-selection-into-a-text-field/#findComment-984791 Share on other sites More sharing options...
spenceddd Posted December 28, 2009 Author Share Posted December 28, 2009 Thanks rajivgonsalves but the text field stills seems to show only a numeric value.... Link to comment https://forums.phpfreaks.com/topic/186489-how-to-get-text-from-a-drop-down-selection-into-a-text-field/#findComment-984794 Share on other sites More sharing options...
rajivgonsalves Posted December 28, 2009 Share Posted December 28, 2009 <select name="skillsListDropDown" onchange="this.form.skillField.value=this[this.selectedIndex].text"> Link to comment https://forums.phpfreaks.com/topic/186489-how-to-get-text-from-a-drop-down-selection-into-a-text-field/#findComment-984795 Share on other sites More sharing options...
PravinS Posted December 28, 2009 Share Posted December 28, 2009 Use this[this.selectedIndex].text Instead of this[this.selectedIndex].value Link to comment https://forums.phpfreaks.com/topic/186489-how-to-get-text-from-a-drop-down-selection-into-a-text-field/#findComment-984796 Share on other sites More sharing options...
spenceddd Posted December 28, 2009 Author Share Posted December 28, 2009 Works a treat thanks! Link to comment https://forums.phpfreaks.com/topic/186489-how-to-get-text-from-a-drop-down-selection-into-a-text-field/#findComment-984805 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.