Hi I have two Iframes i want to load at the same time..
To load one this works great -
andCode:<script type="text/javascript"> <!-- function load() { var fr = document.getElementById ("GoogleCal"); if(fr.style.display=="none") { fr.style.display="block"; } else { fr.style.display="block"; } } //--> </script>
but this doesnt work out when I try to run both..Code:<script type="text/javascript"> <!-- function load() { var fr = document.getElementById ("Remember"); if(fr.style.display=="none") { fr.style.display="block"; } else { fr.style.display="block"; } } //--> </script>
any help on the syntax muxh appreciated..Code:<script type="text/javascript"> <!-- function load() { var fr = document.getElementById ("GoogleCal"), ("Remember"); if(fr.style.display=="none") { fr.style.display="block"; } else { fr.style.display="block"; } } //--> </script>
R


Reply With Quote
Bookmarks