Skip to main content

max / makenotwork

309 B · 10 lines History Blame Raw
1 (function() {
2 var input = document.getElementById('wiz-username');
3 if (input) {
4 input.addEventListener('input', function() {
5 var preview = document.getElementById('username-preview');
6 if (preview) preview.textContent = this.value || 'username';
7 });
8 }
9 })();
10