Giter Site home page Giter Site logo

Comments (4)

sacerro avatar sacerro commented on June 3, 2024 2

Hi,
You can use "translation" setting to achieve this. For example:

$('#hour_field').mask('AB:CD', {
    translation: {
      A: { pattern: /[1-2]/  },
      B: { pattern: /[0-4]/ },
      C: { pattern: /[0-5]/ },
      D: { pattern: /\d/ },
    }
  });

Hope this help!

from jquery-mask-plugin.

Martin12350 avatar Martin12350 commented on June 3, 2024 1

So the best solution right now is this I guess:

var options = {
	placeholder: 'hh:mm:ss',
	translation: {
		2: {pattern: /[0-2]/}, 
		3: {pattern: /[0-3]/}, 
		5: {pattern: /[0-5]/},
		9: {pattern: /[0-9]/}
	}, onKeyPress: function(cep, e, field, options) {
		var masks = ['23:59:59', '29:59:59'];
		var mask = (cep.charAt(0) !== '2') ? masks[1] : masks[0];
		field.mask(mask, options);
	}
};

$('.time').mask('23:59:59', options);

You can omit 9 and replace with 0, but this is more readable, at least for me.
Also '29' is not a typo for '19', it is there because otherwise once You would put 1, You would never be able to write 2 again.

from jquery-mask-plugin.

hax18 avatar hax18 commented on June 3, 2024

I'm currently having the same problem, if u find an answer please let me know in the comment.

from jquery-mask-plugin.

sercit avatar sercit commented on June 3, 2024

Hi, You can use "translation" setting to achieve this. For example:

$('#hour_field').mask('AB:CD', {
    translation: {
      A: { pattern: /[1-2]/  },
      B: { pattern: /[0-4]/ },
      C: { pattern: /[0-5]/ },
      D: { pattern: /\d/ },
    }
  });

Hope this help!

Hi!
Unfortunately, that's not the best way, cause it's possible to set 14:xx , but not possible to set 19:xx.

I think, the best solution will be callback and filter incorrect values on it

from jquery-mask-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.