I have an input element with an onPaste event handler. When I paste a string of text (eg "A string I pasted") into the input the event
gives me an empty string "" value:
<input onPaste={handleOnPaste} placeholder="paste image or url here"></input>
function handleOnPaste(e) {
const stringValue = e.target.value;
console.log({ stringValue }); // logs ""
console.dir({target: e.target}) // logs "A string I pasted". See image below
console.dir({value: e.target.value}) // logs ""
}
- Why does
console.dir(e.target)
provide an object with a differentvalue
thanconsole.dir(e.target.value)
. - How do I access the value that contains a string in my javascript?