Figured out what I did wrong. I had nested my <?php wp_multi_file_uploader(); ?> within a <div> within my form. The multi file upload just needs to be a direct child of the <form> element and it works!
I just copied all the jQuery within the
if ( $(‘#wp_multi_file_uploader’).length > 0 ) { }
into my
.load( ###, function(){ });
on the page I’m working on so it executes all that stuff when the AJAX completes. Seems to be working at first glance.
Thanks again for the help!
Thanks so much for the quick reply! That points me in the right direction. I’ll either do something hacky on my page or modify that file in the plugin a bit to work with what I’m setting up.