Last active
January 8, 2023 12:11
-
-
Save vmpartner/3f4d5869a9e2afc518225758b6912a75 to your computer and use it in GitHub Desktop.
Svelte bind select object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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