There is a link to a PDF file on my page. Clicking on the link actually takes a long time, so I show a progress indicator GIF that there is something that takes some time. But how will you hide the pointer after the PDF is generated on the server and after downloading it? (Basically your browser now says that you are opening a PDF file and ask what you have to do)
Is there an event at this point that I choose to hide the progress indicator I can? P>
Javascript does not have access to information about what is being downloaded. The only thing you can do is load PDFs in IFRAME and hook up the download event on iframe.
Edit : The answer is optional.
If you have access to server-side you can set a cookie with feedback and you can survey the client for its value.
See:
Comments
Post a Comment