1// wait for document to load
2$(function(){
3
4 // use a different language
5 // $file prints the file name
6 // $ext prints the file extension
7
8 // invoke plugin
9 $('#EmPortugues').MultiFile({
10 max: 6,
11 accept: 'gif|jpg|png'
12 STRING: {
13 remove:'Remover',
14 selected:'Selecionado: $file',
15 denied:'Invalido arquivo de tipo $ext!'
16 }
17 });
18
19});