Posts

Showing posts from November, 2013

English improvement and grammer checking in your emails or professional letters

As English is not my native language and I am average in English I faced a lot of issues related to language, grammar errors. So, I found few online grammar checkers which can help anybody to verify before they send any formal emails. http://spellcheckplus.com/ http://www.reverso.net/spell-checker/english-spelling-grammar/

Iframe loading techniques and performance

Image
Iframe loading techniques as from  credit goes to .  Iframe setTimeout() does not work in IE9 Chad Barnsdale of  Unfinishedman.com  mentioned to me on May 25 that the Iframe setTimeout() technique does not work in IE9. And he was right. The file that gets loaded into the iframe simply does not load. Nothing happens. I will dive into this sometime soon. It's probably something small with the JavaScript code. Iframes are often used to load third party content, ads and widgets. The main reason to use the iframe technique is that the iframe content can load in parallel with the main page: it doesn't block the main page. Loading content in an iframe does however have two downsides, as Steve Souders outlines in his blog post  Using Iframes Sparignly : Iframes block onload of the main page The main page and iframe share the same connection pool The onload blocking is the biggest problem of the two and hurts performance the most. You really want the load event to fire as