custom postcode input

PHOTO EMBED

Thu May 09 2024 10:22:23 GMT+0000 (Coordinated Universal Time)

Saved by @divyasoni23 #javascript

<input type="text" id="postcodeInput" placeholder="Enter your postcode" maxlength="6" required>
  
document.getElementById("postcodeInput").addEventListener("input", function(event) {
    this.value = this.value.replace(/[^0-9]/g, '');
}); 
content_copyCOPY