[jQuery] MultiFile plugin taking no parameters

[jQuery] MultiFile plugin taking no parameters


This MultiFile plugin is taking no parameters. I must be overlooking
something simple. Hope someone can help me out.
Here's my test code:
<html>
<head>
<script src="/portal/scripts/jQuery/jquery.js" type="text/
javascript"></script>
<script src="/portal/scripts/MultipleFileUpload/jquery.MetaData.js"
type="text/javascript"></script>
<script src="/portal/scripts/MultipleFileUpload/jquery.blockUI.js"
type="text/javascript"></script>
<script src="/portal/scripts/MultipleFileUpload/jquery.form.js"
type="text/javascript"></script>
<script src="/portal/scripts/MultipleFileUpload/
jquery.MultiFile.pack.js" type="text/javascript"></script>
</head>
<body>
<form>
<input id="myinput" class="multi" type="file" />
<div id="mydiv" style="background-color: yellow;">
Here they come...
</div>
</form>
<script type="text/javascript">
$(function() { // wait for document to load
$('#myinput').MultiFile({
list: '#mydiv'
});
});
</script>
</body>
</html>
See:
http://www.depot2.com/portal/test.html
According to the parameter, this input should place the file names in
the div#mydiv, but it doesn't. I tried setting other parameters as
well, but nothing coming through...