Click to See Complete Forum and Search --> : All right more problems...


Zero-x252
07-30-2003, 01:24 PM
function search()
{
search = window.document.searchf.searchi.value;
if (search != "search"){parent.page.location="http://www.google.com/search?hl=en&ie=ISO-8859-1&q="search}
}
hmm it works to get it to go if i use http://www.google.com/search?hl=en&ie=ISO-8859-1&q="search(search)"
but then it searches for search(search) what should i use instead?
i also get an error:
Expected ';' i used to know how to fix this but i forgot how to...
on line 3 character 99

Zero-x252
07-30-2003, 01:34 PM
:confused: ???is it possible to make the script work the way i want it to ??? :confused:

Zero-x252
07-30-2003, 01:58 PM
:D PLLLLLLLEEEEEEEEEEAAAAAASSSSSSSEEEEEE!!!!!!

Fang
07-30-2003, 02:24 PM
parent.page.location="http://www.google.com/search?hl=en&ie=ISO-8859-1&q="+search
Don't forget to change all special characters in var search.

Zero-x252
07-30-2003, 05:52 PM
Thanx! it works now...