Skip to content

Instantly share code, notes, and snippets.

@vmpartner
Last active January 8, 2023 12:11
Show Gist options
  • Save vmpartner/3f4d5869a9e2afc518225758b6912a75 to your computer and use it in GitHub Desktop.
Save vmpartner/3f4d5869a9e2afc518225758b6912a75 to your computer and use it in GitHub Desktop.
Svelte bind select object
<script>
function fnChangeSelect(e) {
domain.type_id = e.target.value
}
$: if (domain.type_id) {
document.getElementById('type').value = domain.type_id
}
</script>
<select id="type" name="type" on:change={ fnChangeSelect }>
<option value="">Choose type</option>
<option class="option_value" value="1">http</option>
<option class="option_value" value="2">https</option>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment