Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<form action="">
    <p class="input-group">
        <input type="text">
    </p>
</form>
</body>
</html>
 
const input = document.querySelector('input');
const pattern = /^\d+(\.?)\d*$/g;
const allowedCodes = [8, 9, 27, 35, 36, 37, 38, 39, 46, 110, 188];
input.addEventListener('input', onInput);
function onInput(e) {
    
    const value = this.value;
    
    if( !(value.match(pattern) || allowedCodes.some(code => code === e.keyCode)) ) {
        this.value = value.slice(0, -1);
    }
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
dagmanpro
0viewers