Get invalid value from input type number

html, javascript, reactjs

Solution

This is actually possible (at least in Chromium-based browers like Chrome and Edge), it's just a pain. You can get it via the selection interface:

const input = /*...the input...*/;
input.select();
const text = getSelection().toString();

No luck on Firefox, sadly.

Live Example:

const theInput = document.getElementById("the-input");
const theButton = document.getElementById("the-btn");

function saveSelection() {
    const selection = getSelection();
    const range = selection.rangeCount === 0 ? null : selection.getRangeAt(0);
    return range;
}

function restoreSelection(range) {
    const selection = getSelection();
    selection.removeAllRanges();
    selection.addRange(range);
}

function getRawText(input) {
    const sel = saveSelection();
    input.select();
    const text = getSelection().toString();
    restoreSelection(sel);
    return text;
}

theButton.addEventListener("click", event => {
    const value = theInput.value;
    const text  = getRawText(theInput);
    console.log(`value = "${value}", but text = "${text}"`);
});
<p>
Copy some invalid numeric text (like <code>9-9</code>) and paste it into this field:
</p>
<input type="number" id="the-input">
<p>
Then click here: <input type="button" id="the-btn" value="Go">
</p>

Problem

I am using input type number. How can I get the value from this when its not valid. For example using type number and printing just 'e' thats not valid by itself. I am using React but I think this question is very general. ``` onChange(event) { console.log(event.target.value) //is empty string when not using number } <form novalidate> <input type="number" onChange={this.onChange}> </form> ```

Original source

Related problems