Java-script

How to check if the iframe is ing loaded

Create a java script function say abc(objID), here objID is object id of iFrame

 function abc(objID) {
element= document.getElementById(objID);
if(element!=null){
   element.style.cursor = "wait";
    if (element.readyState == 'complete') {
        element.style.cursor = "default"
         return;
}
     setTimeout('abc()',100);
    } 
}

-------------
How to see cookie currently loaded
javascript:alert(document.cookie)

 
Today, there have been 5 visitors (6 hits) on this page!
This website was created for free with Own-Free-Website.com. Would you also like to have your own website?
Sign up for free