function createInputWithRestrictions(elem, pattern){ const parent = elem.parentNode const input = document.createElement("input") if (pattern) input.pattern = pattern elem.style.display = "none" parent.appendChild(input) return input }