Here is an example of JSON data:
[{
"user_id": "113",
"employe_first_name": "Asaladauangkitamakan",
"employe_last_name": "Nasibb"
}, {
"user_id": "105",
"employe_first_name": "Ryan",
"employe_last_name": "Friday"
}, {
"user_id": "87",
"employe_first_name ":"hendi ",
"employe_last_name ":"kenther"
}
]
How can I dynamically create a select dropdown with JavaScript where the option value is the user_id and text is the employe_first_name, then load this when the document is ready? Additionally, how do I fill another field with the selected value from the dropdown?