I have a webpage with a link called "Download". When the user clicks this link, I use javascript to add gif animations so that the user knows that the system is busy. Here is the code:
function submit_form()
{
var nfy = document.getElementById('nfy_area');
var img = document.createElement( 'img' );
img.setAttribute('src', 'images/wait24trans.gif');
nfy.innerHTML = "This will take a few minutes. Please be patient...";
nfy.appendChild( img );
document.forms["download_form"].submit();
}
However, this only works for Opera. For Chrome, nothing is displayed. For Firefox, a broken image is displayed.
Why?
Thank,
lang2 source
share