seanlim Posted November 21, 2010 Share Posted November 21, 2010 <input size="35" id="search" onkeyup="getfishing(this.value)" name="search" onkeydown="$('#results').html('')" autocomplete="off"> this hides the previous results until the current search results are ready. is this what you want? Quote Link to comment https://forums.phpfreaks.com/topic/219086-please-can-someone-help/page/2/#findComment-1137439 Share on other sites More sharing options...
robbaust Posted November 21, 2010 Author Share Posted November 21, 2010 hi seanlim yeah that worked great thank you but how would i stop it from showing the results if someone backspaces to the beginning Quote Link to comment https://forums.phpfreaks.com/topic/219086-please-can-someone-help/page/2/#findComment-1137684 Share on other sites More sharing options...
seanlim Posted November 22, 2010 Share Posted November 22, 2010 <input size="35" id="search" onkeyup="if(this.value!='') getfishing(this.value)" name="search" onkeydown="$('#results').html('')" autocomplete="off"> Quote Link to comment https://forums.phpfreaks.com/topic/219086-please-can-someone-help/page/2/#findComment-1137760 Share on other sites More sharing options...
robbaust Posted November 22, 2010 Author Share Posted November 22, 2010 thank you once again for all your help seanlim really appreciated all your help these past couple of days Rob Quote Link to comment https://forums.phpfreaks.com/topic/219086-please-can-someone-help/page/2/#findComment-1137884 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.