Click here to Skip to main content
15,886,003 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
CSS
input[type=text]::-ms-clear {
    display: none;
}


It is working in local-host(local machine) but not in other machines.
After clearing text in text-box with internet explorer text-box clear icon then the jquery mask is not working.
Posted
Updated 7-Aug-14 22:08pm
v4

1 solution

Try this code,Its working.

JavaScript
$('.phone_us').on('keydown', function () {
    setTimeout(function () {
        //Re-Bind the  jquery input mask
        $('.phone_us').mask('(000) 000-0000');
    }, 100);
});
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900