I have a form upload
I need a jQuery function that will write in a hidden text input what is written in the input file.
So I have :
<input class="addFile" id="field2" name="fileLyric" type="file" />
Whatever will be written there by the uploading (obviously the file path) should be then automatically written in a hidden text input
<input id="field2hidden" name="fileLyrichidden" type="text" style="display:none"/>
Is there a way to achieve this?
Thank you!