NodeJS Auto-Update Dropdown menu based on MySQL queries
NodeJS Auto-Update Dropdown menu based on MySQL queries This is my first project working with Express & NodeJS so please bear with me, as I a a total newbie to JavaScript. I am currently trying to figure out how to create a dropdown menu that changes its values based on the options "pais", "titulacion" and "destino" selected from this DB (outgoing): +--------+-----------+------------+-----------+------------+----+ | nombre | apellidos | destino | pais | titulacion | id | +--------+-----------+------------+-----------+------------+----+ | John | Martinez | UPMC | Francia | GIB | 1 | | Marta | López | HEC | Francia | GITST | 2 | | Amadeo | Perez | Linköping | Finlandia | GITST | 3 | +--------+-----------+------------+-----------+------------+----+ I want to make it so that if I select "Francia" on the dropdown list, the other dropdown list for "destino" will only show those opt...