Javascript event redirecting to another page instead of displaying result in same page

106 Views Asked by At

In this piece of code there is a search bar, when I am searching something it will narrow down my search. I am using onkeyup event which call javascript function to search the required data, but after entering some text in search bar when i press enter it is redirecting to the home page instead of display the results.

CODE

<apex:actionFunction name="searchServer" action="{!runSearch}" rerender="results,debug,errors">
  <apex:param name="Name" value="" />
</apex:actionFunction>
<table cellpadding="2" cellspacing="2">
  <tr>
    <!--     style="font-weight:bold;">Defect Name<br/> -->
    <td>
      <input type="text" id="Name" onkeyup="doSearch();" /> </td>
  </tr>
</table>

Any help would be appreciated.

1

There are 1 best solutions below

0
On

I think the form is submitted on Enter button press. If you have <apex:form tag then try putting onsubmit="return false;" there.

<apex:form onsubmit="return false;"