On page reload i have to show the message "File upload in progress, your upload will be lost on reload!". I am using the below code for that, but the alert is always "Changes that you made may not be saved!" in chrome browser.
window.onbeforeunload = function() {
return 'File upload in progress, your upload will be lost on reload!';
}