Search box

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
Karel Haitsma
Beginner
Beginner
Posts: 4
Joined: Wed Apr 07, 2004 9:35 pm
Location: Netherlands
Contact:

Search box

Post by Karel Haitsma »

Hello people, I'm constructing a menu of milonics too, but still have problems with the SEARCH BOX function within Milonic Site Menu. My code for searching=:

<table BORDER="0" CELLSPACING="0" CELLPADDING="0"><tr><td colspan=2><br>
<!-- Freefind Search HTML for Karel's Music Page -->
<FORM ACTION="http://search.freefind.com/find.html" METHOD="GET" target=_new>
<span class="kleinst"><font color="#005c00">Zoek op deze site</font></span></TD></tr></table>
<table BORDER="0" CELLSPACING="0" CELLPADDING="0"><tr><td>
<INPUT TYPE="HIDDEN" NAME="id" VALUE="54485083">
<INPUT TYPE="HIDDEN" NAME="pid" VALUE="r">
<INPUT TYPE="HIDDEN" NAME="mode" VALUE="ALL">
<INPUT TYPE="TEXT" NAME="query" SIZE="15" class=textarea>
<INPUT TYPE="SUBMIT" VALUE="Zoek!" class=knop onmouseover="this.style.backgroundColor='#ddddff'; this.style.color='#009900';"
onmouseout="this.style.backgroundColor= 'transparent'; this.style.color='#0000af';">
</FORM></td></tr></table>

How can I put it like the search box as the milonic menu?????

Thanks for replying, Karel
User avatar
John
 Team
 Team
Posts: 5967
Joined: Sun May 19, 2002 8:23 pm
Location: Phoenix, AZ
Contact:

Post by John »

Try this, although because of the JS in there I'm not 100% sure...

Code: Select all

aI("text=<form action=http://search.freefind.com/find.html method=get target=_new><span class=kleinst><font color=#005c00>Zoek op deze site</font></span><br><input type=hidden name=id value=54485083><input type=hidden name=pid value=r><input type=hidden name=mode value=ALL><input type=text name=query size=15 class=textarea><input type=submit value=Zoek! class=knop onMouseOver=this.style.backgroundColor=#ddddff this.style.color=#009900 onmouseout=this.style.backgroundColor= transparent this.style.color=#0000af></form>;type=form;");
There were a number of HTML errors that needed to be cleaned up first.
John
Post Reply