Код: Выделить всё
$("input.files").fileinput({
allowedFileExtensions: ['pdf'],
uploadAsync: true,
deleteUrl: 'ajax/file-delete.php',
uploadUrl: "ajax/file-add.php",
uploadExtraData: {
file_id: $(this).attr('id')
}, // !!! not working
}).on("filebatchselected", function(event, files) {
$(this).fileinput("upload");
console.log($(this).attr('id'));
});< /code>
Files
Подробнее здесь: https://stackoverflow.com/questions/796 ... -attribute