I have an issue with a page redirect function executing when accessed by the enter key. Basically, onkeypress=Enter or when Search is clicked the page should redirect to a preset url and append a searchstring to the query.
The redirect works if I manually click 'Search', however, if I just hit enter it does not. I added an alert to make sure the search function is firing, which it is, but the document.location.href is not redirecting the page. In FF4, it refreshes the page (but preserves the searchstring). In IE7, it closes the window.
[edit] It seems to be pertinent that I'm using this on a Sharepoint site. The code works fine outside of Sharepoint. [/edit]
The example below simplifies what I have implemented, but recreates the problem.
<script type="text/javascript">
function mySearch() {
var SearchString = document.getElementById("SearchBox").value;
var url = "http://stackoverflow.com/search?q="+SearchString;
alert(SearchString);
document.location.href = url;
}
</script>
<input id="SearchBox" onkeypress="if (event.keyCode == 13) mySearch();"/>
<a id="SearchButton" href="javascript:mySearch();" />Search</a>
Can anybody help?
htmltags at top and bottom) and it works for me in Chrome, Firefox, and IE 8. Perhaps the problem is only in the non-simplified version? – JacobM Apr 27 '11 at 15:36