[jQuery] Multiple File Upload Plugin for jQuery

[jQuery] Multiple File Upload Plugin for jQuery


I am trying to load (using $.load()) a page which contains a form with
Multiple File Upload Plugin but it doesn't work.
Any idea?
Here is the code:
.
.
<input type=button onclick="jQuery('#ap').load('upload.asp');">
<div id='ap'>
Empty div
</div>
.
.
upload.asp
<html>
<head>
<script src="/InmoFusion2/libs_Ext/jquery/jquery.js"></script>
<script>
    jQuery.noConflict();
</script>
<script src="/InmoFusion2/libs_Ext/jquery/jquery.MultiFile.js"></
script>
<script src="/InmoFusion2/libs_Ext/jquery/jquery.MetaData.js"></
script>
</head>
<body>
<div>
<fieldset>
<legend>Example 4</legend>


This example requires the MetaData plugin.
<br/>
Here's is how you'd use the MetaData plugin to configure this plugin
in more detail.
<br/>
You can even change the language of the plugin by customizing the
STRING object.








<code class="Big">
class="multi {accept:'txt', max:1, STRING:
{remove:'Remover',selected:'Selecionado: $file',denied:'Invalido
arquivo de tipo $ext!'}}"
</code>
<div class="P5 B">
No limit
</div>
<form action="">
<input type="file" class="multi {accept:'txt', max:1, STRING:
{remove:'Remover',selected:'Selecionado: $file',denied:'Invalido
arquivo de tipo $ext!'}}"/>
</form>
</fieldset>
</form>
</div>
</code>

</legend>
</fieldset>
</div>
</body>
</html>