Monday, January 10, 2022

All Capital

1.  All capital in jquery

<script>

$(function () {

        $("input[type='text']").keyup(function () {

            this.value = this.value.toUpperCase();

        });

    });

</script>

No comments:

Post a Comment

Linq Expression syntax for where condtion in linq

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