Hi
I'm trying to have a search facility on my site which performs search without refreshing the page. The only problem I have encountered is to be able to take the input which is typed in a search box and associate an onClick event with it that passes that value through as a parameter, I have the following so far, just need to know how to put that value in there...
<form>
<input type="text" name="query" /> [B]<!--I want this value-->[/B]
<input type="button" value="Submit" onClick="myFunction([B]<!--IN HERE-->[/B])"/>
</form>