You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zncstrap/modules/send_raw/files/select.js

12 lines
386 B

function updateUser() {
var select = document.getElementById('selectnetwork');
var opt = select.options[select.selectedIndex];
document.getElementById('user').value = opt.parentNode.getAttribute('label');
}
function init() {
updateUser();
document.getElementById('networklabel').firstChild.nodeValue = 'Network:';
document.getElementById('userblock').removeAttribute('style');
}