• Resolved hellsinger

    (@hellsinger)


    Why I cannot change value to greate than:9999 – when I put 1000000000 it change to 9999

    Example in filed “Type what is average cost per hour”

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @hellsinger

    The issue is caused by your own code:

    $.fn.numberstyle = function(options) {
    
     /*
      * Default settings
      */
     var settings = $.extend({
    	value: 0,
    	step: 1,
    	min: 1,
    	max: 9999
     }, options );
    

    You are forcing the max value to 9999.

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Limit number/digits’ is closed to new replies.