The code below displays a Google map and search results when you enter an address and hit the submit button. I\'ve been playing with it to try and force the page to complet
Replace that line with:
$("#someElement").click(function() { window.location.href = window.location.href; });
or:
$("#someElement").click(function() { window.location.reload(); });