Rovak / InlineAttachment

Easily paste and upload files/images in plain textareas
http://git.razko.nl/InlineAttachment
MIT License
619 stars 77 forks source link

Add option to send extra data when sending file #29

Closed Rovak closed 10 years ago

Rovak commented 10 years ago

Added extra configuration options to send extra POST data when uploading a file

Example:

$('textarea').inlineattach({
    uploadUrl: 'upload_attachment.php',
    extraParams: {
        id: 100 // Extra parameter, in PHP this would be available as $_POST['id']
    }
});