Just to let you know, I really like the plugin. It solves a lot of problems I anticipate happening with our website.
About the delete key issue. Mostly I noticed it when I entered input, tabbed off and then realized there was an error. When I shift-tabbed back in, the plug-in reverts to the beginning of the entry. If you want to delete the entry, that's when the delete key issue appears. Since the backspace works as anticipated, maybe the plugin could check if there is a value in a masked input and then collapse to the end, that will take the delete key out of play: { var r=exElement .createTextRange() ; r .moveStart( 'character',exElement .value.length ) ; r .select();} On Jul 3, 11:41 am, Josh Bush <[EMAIL PROTECTED]> wrote: > Once I get this feature set stable, then I'll start adding more > features. Poor Jörn has been waiting on some features he requested at > Beta 1 or so. I really don't know what to do about the file naming. > It's still amaskedinputplugin, I just changed the method calls to a > verb to show the action that was taking place. > > Josh > > On Jul 2, 9:59 pm, Eric Crull <[EMAIL PROTECTED]> wrote: > > > > > Josh, I've been working with your plug-in this weekend and I think > > it's intuitive to the user to be able to use the "delete" key to > > remove a wrong entry. Right now the delete key only erases the > > character it is over. Would it be difficult to add the logic to > > delete the next char in the buffer each time the delete key is > > pressed? > > > Also, I did respond in the RC2 thread about another usability change, > > I'd like you to > > consider:http://groups.google.com/group/jquery-en/browse_thread/thread/fad5c5d... > > > THird, should you change the name to jquery.mask to reflect the > > changes you made to the plugin? > > > Thanks, > > > Eric > > > On Jul 2, 8:08 pm, Josh Bush <[EMAIL PROTECTED]> wrote: > > > > I keep coming across a few bugs here and there that need fixing. I've > > > released the 3rd RC for mymaskedinputplugin. This one has breaking > > > changes, so if anyone is using it, please proceed carefully. > > > > Here's what I managed to get into this release. > > > > * BREAKING CHANGE: The mask function has been changed to more closely > > > match the style of the jQuery library. Instead of > > > calling .maskedinput(), you will need to call .mask(). Additionally > > > the .AddMaskDefinition() has been moved to a namespace and renamed. > > > Instead, you should make a call to .mask.addPlaceholder(). > > > * Fixed a bug where the buffer was wiped when text was selected and a > > > non-typeable character was pressed. > > > * Fixed a bug where the buffer was not cleared, but the text was when > > > pressing the escape key. > > > * More code cleanup. > > > > Please check it out athttp://digitalbush.com/projects/masked-input-plugin > > > > Thank You > > > Josh- Hide quoted text - > > - Show quoted text -