I\'m using a JavaScript upload script that says to run the initialize function as soon as the DOM is ready. I currently have it working just fine with either a call to the f
You could also just move the <script> to the bottom of your page like this:
<script>
</body> <main></main> <script> // code </script> </body> </html>