Tuesday 12 January 2021

MVC - jQuery - Get selected value from drop down list in few seconds

 

 Watch this example on YouTube


 

 

@model WebApplication1.Models.OrderCustomClass

@using (Html.BeginForm("Index", "Home"))
{
    @Html.DropDownListFor(x=>x.or.ProductID, new SelectList(Model.prod,"ProductID", "Name"), new { @id = "myID" })

 
}
<input type="submit" class="submit" onclick="DoSomething()" value="Submit" />

@section Scripts{
    <script type="text/javascript">

        function DoSomething() {
            alert($("#myID").val())
        }

        $(document).ready(function () {
        
      
        });
    </script>
    }


No comments:

Post a Comment