The main progress is like the following described. Someone opens my site. After that he/she makes ctrl+v and pastes the image but that is irrelevant. Next the jquery is posting the base64_encoded image string to a php file and then there i am using explode to determine the extension and i'm generationg a random name for the image. How could i write a progress bar to this? Thanks for the help anyway.
$("html").pasteImageReader(function(results) {
var dataURL, filename;
filename = results.filename, dataURL = results.dataURL;
$.post("clipboardup.php", { img: dataURL }, function(data) {
$("#testing").html(data);
});
});