Skip to main content

Keypad

Free Form Editor Keypad

Free Form Editor

Features

  • Easy to integrate
  • Responsive
  • Vanilla JS (no libraries required!)



function input(e) { var tbInput = document.getElementById("tbInput”); tbInput.value = tbInput.value + e.value; }

function del() { var tbInput = document.getElementById("tbInput"); tbInput.value = tbInput.value.substr(0, tbInput.value.length - 1);