I am loading an HTML page that has a form. I would like to be able to dismiss the keyboard when the user clicks on GO or if he clicks on the SUBMIT button on the HTML page.
You can use javascript to take the focus away from the HTML text field using blur:
document.foo.bar.myinput.blur();