Moving the file list - jQuery Multiple File Upload - Plugin

Moving the file list - jQuery Multiple File Upload - Plugin

hi,

has anybody been able to customize the files list?

the example says

This example populates the file list in a custom element

$(function(){ // wait for document to load
$('#T7').MultiFile({
list: '#T7-list'
});
});






i've already named my input element to T7, and the div i want to use to populate the file list is named T7-list. i can get the multiple file to work, and i see the list being populated, just not in the div i want.

i also tried using the jQuery .ready thing as follows, without success





$(document).ready(function(){ // wait for document to load
$('#T7').MultiFile({
list: '#T7-list'
});
});







any ideas?

regards