Empty file fields
Posted
by user319319
on Stack Overflow
See other posts from Stack Overflow
or by user319319
Published on 2010-06-18T00:30:56Z
Indexed on
2010/06/18
0:53 UTC
Read the original article
Hit count: 298
i must check all :file fields, all fields must be not empty. i use code
function CheckFiles() {
var t = $('.uploadElement:empty').size();
alert(t);
}
but t return all uploadElement elements count. how to get empty :file fields?
sorry my english
© Stack Overflow or respective owner