Jquery ajax – Check if file exists, if not then display specific div
I am using onclick show function to accomplish following sequence.. Onclick, a div with content will appear for 5 seconds After 5 secs, old div hides and new div with content appears function show() { document.getElementById("myDiv").style.display="block"; setTimeout("hide()", 5000); // 5…