“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.
Related posts:
I love you for this post man.. I googled for an answer to my puzzle, and of course I forgot my silly equal sign too.. laughs Thanks for posting it in the first place!
~Qu’E
I had issue on FF.FF does not work window.location(“http://aaa.net” );.Once i changed to window.location=”http://aaa.net”; and now it works on both IE and FF.
Thanks Lot ………………
thanks very much!