Skip to content
Advertisement

Fetching values from the db; but, the selected value are not getting submitted

I have created a dynamic drop down list to fetch values from the db based on username; but, the selected drop down value does not get submitted into the db. Not sure, what I am missing here?

Here is the code snippet:

JavaScript

Advertisement

Answer

There is no value attribute for <select> Only value attribute for <option>

Add

JavaScript

And remove value from <select> tag

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement