“window.location is not a function” Well of course it isn’t.
Wrong
window.location( "http://blog.purepistos.net" );
Right
window.location = "http://blog.purepistos.net";
A silly mistake I made recently, one which left me head scratching for a while.
Share This