Forum Moderators: open
I believe something like this would do the job, however, there may be a better solution :)
<form name="form">
<input type="text" name="field" />
<input type="button" onClick="document.location.href = ('http://www.example.com/' + escape(document.form.field.value))" value="Click me!" />
</form>