Reputation: 482
I want to design Custom text box in MVC4.
Can anyone please suggest me the approach.
Any help is really appreciated.
Upvotes: 1
Views: 171
Reputation: 2707
You can try this plugin digitalBush Masking Plugin.
<script type="text/javascript">
$(function () {
$(".inputclass").mask("9999.99/9999.99");
});
</script>
HTML Source
<input type="text" class="inputclass" value="" />
Upvotes: 1