javascript

I’ve written a window event handler mainly for handling multiple onload events. The typical way of handling multiple onload events is by creating a helper function that contains all the onload functions and using window.onload to call the helper function. An example would look something like this, function onloader() { onload1(); onload2(); // and so…

Read More How to handle multiple window events in Javascript

As promised in my previous post (301 Meta Refresh Redirects: How Google and Yahoo Sees It), I will show you a script I wrote that will handle 301 redirects from Blogger to WordPress using the meta refresh tag and javascript. I have tested it on my old blogger (http://dannynsl.blogspot.com) and it seems to have worked…

Read More How to 301 redirect from Blogger to WordPress