[jQuery] Re: Masked Input Plugin 1.1.2

2007-11-30 Thread Josh Bush
That's good to know! I had a good discussion with Felix about other forms of validation. My problem with regular expressions is that there's no good way to convey what is a mask character and what is a placeholder. This is something that is on my mind and I'm looking into ways to expand

[jQuery] Re: Masked Input Plugin 1.1.2

2007-11-30 Thread KidsKilla .grin! wuz here
Great plugin! i only think it's better to use somethin like $(this).bind('paste.jqmask, input.jqmask',function(){ setTimeout(checkVal,0); };) instead of if ($.browser.msie) this.onpaste= function(){setTimeout(checkVal,0);}; else if ($.browser.mozilla)

[jQuery] Re: Masked Input Plugin 1.1.2

2007-11-30 Thread Josh Bush
By using the event.identifier type binding, I'd be limiting my plugin to 1.2.x+. I've never tried using bind with the paste and input events. The solution that is in the plugin was the only way I could make it work, but that was quite some time ago. I'll investigate that further when I get

[jQuery] Re: Masked Input Plugin 1.1.2

2007-11-30 Thread KidsKilla .grin! wuz here
I tried, seems like it works just fine =): input.one(unmask,function(){ input.unbind(focus,focusEvent); input.unbind(blur,checkVal); input.unbind(keydown,keydownEvent);

[jQuery] Re: Masked Input Plugin 1.1.2

2007-11-29 Thread sawmac
On Nov 29, 6:32 pm, Josh Bush [EMAIL PROTECTED] wrote: I just released version 1.1.2 of my Masked Input Plugin for jQuery. Josh, that's great. Very nice implementation with just the right amount of information for users to quickly figure out what they need to input. I'll definitely be trying