Hello,
I'm trying to configure my search form to do a search within my site via google, when they hit the enter button. Right now all my search does is search google.
<form action="http://www.google.com/search">
<input type="text" name="q" onkeypress="submitOnEnter(this, event);"/>
</form>
How can I get it to search my site via google?
Thanks