I started working on a contact form using filepicker to upload files. Now I've got that part working except for one thing.
This is the little javascript widget to upload the file:
<input type="filepicker" data-fp-apikey="------------------"
onchange="alert(event.fpfile.url)" >
Now the alert displays the url of the uploaded file.
My question is: How do I get this url to be set as a value in a text field?
Thanks in advance