javascript - How to remove underline from jQuery input mask plugin textboxes -


i want remove underline masked input implemented using jquery inputmask plugin- http://github.com/robinherbots/jquery.inputmask enter image description here

to remove mask, use placeholder option. assigning empty string placeholder, removes mask. can assign placeholder when creating mask:

$('input').inputmask("mask name", {"placeholder": ""}); 

or change afterwards:

$('input').inputmask({"placeholder": ""}); 

Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -