Great Coder
Published in : 2022-02-11
I wrote the following code and use it to copy and submit types of data into a form.
In fact I used to use this small peace of code in the past to copy just images as the browsers abilities were limited, but now they have allowed this to all types of data including texts too.
The problem here is that the code thinks that the text is a file when copies and goes directly to submit.
How to fix that?
let fileInput = document.getElementById("doc_attachment");window.addEventListener('paste', e => { fileInput.files = e.clipboardData.files; document.getElementById("new_doc_attachment").submit();});
Join our community and get the chance to solve your code issues & share your opinion with us
Sign up Now
nico Date : 2022-02-19
Best answers
4
Best answers
4
Hello did you try the following to get the data ?