Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created March 12, 2017 10:22
Show Gist options
  • Save Dosant/c33bee51f792f84f19b3c99a7d035b64 to your computer and use it in GitHub Desktop.
Save Dosant/c33bee51f792f84f19b3c99a7d035b64 to your computer and use it in GitHub Desktop.
<select id="tags-select">
<option value="политика" selected>Политика</option>
<option value="музыка" selected>Музыка</option>
<option value="спорт">Спорт</option>
</select>
<p id="tags-text"><p>
var tagsSelect = document.getElementById('tags-select');
var tagsText = document.getElementById('tags-text');
function handleTagsChange() {
tagsText.textContent = tagsSelect.value;
}
tagsSelect.addEventListener('change', handleTagsChange);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment