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;

Leave a Reply

You must be logged in to post a comment.