Ciao Vincent, mi spiace non sono riuscito, purtroppo non sono molto forte in HTMLe fare un debug con il telefonino mi resta difficile.
Non ho sotto mano un pc con il Wifi per potermi collegare in http all MCU.
In ogni caso ho risolto con questo:
<!DOCTYPE html>
<html>
<head>
<script>
function changeValue(o){
document.getElementById('type').value=o.innerHTML;
}
</script>
<button id="technician" onclick="changeValue(this)">Technicin</button>
<button id="developer" onclick="changeValue(this)">Developer</button>
<input type="text" id="type" name="type" value="change" />
</body>
</html>
Spero possa essere di aiuto a qualcun altro.
Grazie ancora.