September 21, 2007

Fixed SearchTIP and MathTIP for Safari

I fixed the bug in Safari so that now you can use SearchTIP and MathTIP.

It was one of those bugs I've learned about before. I neded to use a named iFrame rather than an index when setting the href destination of the Google query.

I simply changed:

parent.frames[0].location.href = q;

to:

parent.frames['SearchFrame'].location.href = q;

Posted by LCH at September 21, 2007 12:45 PM