I have a PHP form which includes a file being uploaded upon submit.
As I allow pretty big files, the page can often stand there loading for ages.
Is there a way to show the user a loading animation of some sort?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll need JQuery to use my code, but it’s worth it:
Put this script tag in your site
<head>:Put a hidden loading gif somewhere, wherever you want to see it
Hide it on page load:
$('#loader').hide();Then in Javascript (or even better JQuery), inside your submit function…show/hide it: