-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why there is no jquery version? #341
Comments
And how can i get getRawValue() |
just use $(".my-input").val() |
Nice, so I added a link in README, jQuery deserves more love than any other libs. |
The line "var cleave = new Cleave('#'+this.id, options), |
@Swizzy Thanks, you are right. I just don't remember why I needed 'id') |
Any ideas on how to get Here's a fiddle of my attempt to get this to work. My basic requirement is to be able to remove Cleave dynamically. |
According to your jsfiddle code:
|
@armenio Thank you! That worked |
Just a minor change for others. var cleave = new Cleave('#'+this.id, options), $this = $(this);
// should be
var $this = $(this), cleave = new Cleave($this.first(), options); |
Can anyone please tell me how to import the addon for phone numbers? |
kind of (+autoUnmask option for numeric):
The text was updated successfully, but these errors were encountered: