Widget loads slowly
-
Hi, I’m wondering what might be causing the widget to load slowly for me. It was blocking my page from loading for a solid 30 seconds so I iframed it in using a script to load it after the body. Now the rest of the page loads quickly, but the widget in the iframe takes about a minute to appear. Any idea what the cause might be? The site is https://discoverpearl.com/test/leewater/. The script I’m using to iframe the widget:
<div id="tidediv"> <script> //doesn't block the load event function createIframe(){ var i = document.createElement("iframe"); i.src = "https://tides2.tidegraph.com/api/plot.php?bg=transparent&scale=0.65&lat=26.5217&lng=-82.1883/"; i.scrolling = "auto"; i.frameborder = "0"; i.width = "208px"; i.height = "312px"; document.getElementById("tidediv").appendChild(i); }; // Check for browser support of event handling capability if (window.addEventListener) window.addEventListener("load", createIframe, false); else if (window.attachEvent) window.attachEvent("onload", createIframe); else window.onload = createIframe; </script> </div>
Thanks!
- The topic ‘Widget loads slowly’ is closed to new replies.