dennismonsewicz Posted October 16, 2008 Share Posted October 16, 2008 How would I go about or could someone suggest a good tutorial on how to append an upload input to the page everytime a user wanted to upload more than one file? Link to comment https://forums.phpfreaks.com/topic/128745-adding-more-upload-fields/ Share on other sites More sharing options...
emehrkay Posted October 16, 2008 Share Posted October 16, 2008 document.createElement is the function that you are looking for http://developer.mozilla.org/en/DOM/document.createElement you'll be looking to append it to a node in the dom, so you'll find the node somehow (document.getElementById()) and append the element Link to comment https://forums.phpfreaks.com/topic/128745-adding-more-upload-fields/#findComment-667507 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.