I'm just getting integrated with filepicker.io, and I'm using the very first example they provide with a drag-drop widget.
<input type="filepicker-dragdrop"/>
If already present in the html when the page loads, the custom input converts correctly. However if you add one to the page dynamically later, all you get is a featureless default input:
// Inserts generic featureless text input
$('#some_div').html('<input type="filepicker-dragdrop"/>');
Is there a way to force filepicker to reprocess the DOM and convert newly inserted widgets?