Hi Mindstickians!
I want to display alert message of entered text from textbox, after entered debit card number by users for just confirmation.
Debit card number format as following
9585-5845-6525-4751
Thanks in advance!
home / developersection / forums / alert message after entered debit card number
Hi Mindstickians!
I want to display alert message of entered text from textbox, after entered debit card number by users for just confirmation.
Debit card number format as following
9585-5845-6525-4751
Thanks in advance!
AVADHESH PATEL
09-Mar-2013Hi Ankita!
You could try following line of code
<script src="../../Scripts/jquery-1.7.1.min.js" type="text/javascript"></script> <script src="../../Scripts/jquery.maskedinput.js" type="text/javascript"></script> <script type="text/javascript"> jQuery(function ($) { $("#txtAlert").mask("9999-9999-9999-9999", { completed: function () { alert("You typed the following: " + this.val()); } }); }); </script><input id="txtAlert" type="text" />
Note:
"jquery-1.7.1.min.js" provided by MVC application
"jquery.maskedinput.js" you can download from following link
https://raw.github.com/digitalBush/jquery.maskedinput/1.3.1/dist/jquery.maskedinput.min.js