`step` automatic rule gets broken for very small steps · Issue #2469 · jquery-validation/jquery-validation · GitHub | Latest TMZ Celebrity News & Gossip | Watch TMZ Live
Skip to content

step automatic rule gets broken for very small steps #2469

Open
@bderleta

Description

@bderleta

Your environment

  • Version of jquery-validate: 1.19.5
  • Browser name and version: Firefox 116.0.2

Current behavior

When input[type="number"] has an attribute step with value of magnitude smaller than approx. 1e-7, the step rule has its value assigned in an exponential form, causing regular expression not to being matched.

Expected behavior

Proper input validation, taking actual number of decimal places into account.

Live demo

https://jsfiddle.net/ydj8o4nu/

Hotfix proposal

After reconsideration, I see it might not cover all possible cases, but alternate solutions like toLocaleString are even more dodgy.

decimalPlaces = function( num ) {
  var exponentialMatch = ( "" + num ).match( /(?:e\-(\d+))?$/ );
  if ( exponentialMatch && exponentialMatch[1] ) {
    return parseInt(exponentialMatch[1]);
  }
                
  var match = ( "" + num ).match( /(?:\.(\d+))?$/ );
  if ( !match ) {
    return 0;
  }
  
  // Number of digits right of decimal point.
  return match[ 1 ] ? match[ 1 ].length : 0;
  },

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      TMZ Celebrity News – Breaking Stories, Videos & Gossip

      Looking for the latest TMZ celebrity news? You've come to the right place. From shocking Hollywood scandals to exclusive videos, TMZ delivers it all in real time.

      Whether it’s a red carpet slip-up, a viral paparazzi moment, or a legal drama involving your favorite stars, TMZ news is always first to break the story. Stay in the loop with daily updates, insider tips, and jaw-dropping photos.

      🎥 Watch TMZ Live

      TMZ Live brings you daily celebrity news and interviews straight from the TMZ newsroom. Don’t miss a beat—watch now and see what’s trending in Hollywood.