Robin Herbots 2b7e0a8420 Email mask doesn t allow to go to the domain part by mouse fix #885 10 years ago
..
Readme.txt dec05b5ad4 #1030 && comment out in phone-uk.js fix #1025 10 years ago
jquery.inputmask.linux.nuspec 2b7e0a8420 Email mask doesn t allow to go to the domain part by mouse fix #885 10 years ago
jquery.inputmask.nuspec 2b7e0a8420 Email mask doesn t allow to go to the domain part by mouse fix #885 10 years ago

Readme.txt

## .NET Nuget Package Install

```html
PM> Install-Package jQuery.InputMask
```

In App_Start, BundleConfig.cs

```c#
bundles.Add(new ScriptBundle("~/bundles/inputmask").Include(
"~/Scripts/jquery.inputmask/inputmask.js",
"~/Scripts/jquery.inputmask/jquery.inputmask.js",
"~/Scripts/jquery.inputmask/inputmask.extensions.js",
"~/Scripts/jquery.inputmask/inputmask.date.extensions.js",
//and other extensions you want to include
"~/Scripts/jquery.inputmask/inputmask.numeric.extensions.js"));
```

In Layout

```html
@Scripts.Render("~/bundles/inputmask")
```