View Single Post
  #2 (permalink)  
Old 10-27-06, 07:59 PM
nova912's Avatar
nova912 nova912 is offline
Code Guru
 
Join Date: Sep 2004
Location: Traverse City, MI, USA
Posts: 821
Thanks: 0
Thanked 0 Times in 0 Posts
<input type=\"submit\" onclick=\"ajaxFunction()\" value=\"Search\">\n";

That is your proboem, you're submitting your search page.

<input type=\"button\" onclick=\"ajaxFunction()\" value=\"Search\">\n";

That should fix your problem.

Last edited by nova912; 10-27-06 at 08:03 PM.
Reply With Quote