Change on the of elements in the client, they will be propogated to the "server"
.value
on the component)
let client = document.getElementById('client'),
server = document.getElementById('server'),
obj = client.value;
client.addEventListener('change', function(evt) {
console.log("Example exchange", client.value);
server.value = client.value;
});