I am having a dropdown and I want to bind a Jquery onchange event to the TagHelpers select tag. Below is my code.
<select asp-for="BusinessType"
asp-items="@Model.BusinessTypeCollection">
</select>
How can I bind bind the onchange event inline of the tag.
Something like this.
<select asp-for="BusinessType"
asp-items="@Model.BusinessTypeCollection"
onchange ="something">
</select>
