I'm using the html5 canvas to drag and drop file uploads but I need to send additional info with the dropped files. specifically a recordID. I'm sending my file to php like this :
canvasData = canvas.toDataURL('image/jpeg');
var ajax = new XMLHttpRequest();
ajax.open("POST", './php/uploadImage.php', false);
ajax.setRequestHeader('Content-Type', 'application/upload');
ajax.send(canvasData);
How do I add an additional param of recordID = recordID along with the file?