Search Form

sean.ferguson

OSNN Veteran Addict
Joined
4 Jul 2003
Messages
1,693
i am in the process of re-designing my website, one of the functions is a form the searches google, i have it working but there is one bug that i can't get fixed.

this is the code i have for the form
Code:
    <form id="search" action="http://www.google.com/search" method="get"> 
      <input name="q" type="text" size="10"> 
      <a href="">search</a> 
    </form>

now, if you type something into the text box and press enter, it searches google fine with no problems whatso ever, but the..
Code:
<a href="">Search</a>
i dont know what i am supposed to have in the link?

any help will be greatly apprieciated 🙂
 
Code:
<input type="submit" value="Search" />
You can change the button to an image too (Wouldn't recommend that, tis just annoying 😛) I'm pretty sure to submit a form with a text link would require some form of JavaScript.
 
Apparently this works
Code:
<a href="javascript:this.form.submit()">submit this form</a>
 
the first bit of code SPeedY_B said works fine when i try it
Code:
<input type="submit" value="Search" >
 
do'h my bad, im sorry speedy it does work, thanks Khayman for drawing my attention to it again 😀 i missed />
 

Members online

No members online now.

Forum statistics

Threads
62,021
Messages
673,242
Members
5,639
Latest member
Everlong
Back
Top