Monday, June 10, 2019

Form Get on Change in Jquery

1. Form Get on Change in Jquery
<script>
$(document).ready(function () {
        $("#months input[type=checkbox]").change(function () {
                  $("#frm_month").submit();
        })
})
</script>


<form action="/receipt/Create" id="frm_month" method="get">

</form>



No comments:

Post a Comment

Linq Expression syntax for where condtion in linq

(Expression<Func<T, bool>> filter)