Response title
This is preview!
document.getElementById('frameID').onreadystatechange = loadImage;
function loadImage()
{
if(document.getElementById('frameID').readyState != 'complete')
{
$("#imageDiv").removeClass('loadingImage').addClass('frameDivLoading');
document.getElementById("frameID").style.display = "none";
}
else
{
$("#imageDiv").removeClass('frameDivLoading').addClass('loadingImage');
document.getElementById("frameID").style.display = "block";
}
}
any solution?function test(){/*some operation*/}
in javascript.© 2013 jQuery Foundation
Sponsored by and others.