I am trying to add a search box to each page of my site. It seems to work, except the auto complete doesn't seem to "refresh" as you type. So it shows a drop down list as start to type, but words do not drop away, when the letters no longer match and if you remove all the letters and start to type a new letter, the list is still the first one.
I am using the .asp version. All the Zoom files are in a subdirectory, /search
Pertinent Code is below:
Thanks
Eric
I am using the .asp version. All the Zoom files are in a subdirectory, /search
Pertinent Code is below:
HTML Code:
<script type="text/javascript">var ZoomAutoComplete_URL = "../search/search.asp?zoom_ac=1";</script> <script type="text/javascript" src="../search/zoom_autocomplete.js"></script> <script type="text/javascript"> if (window.addEventListener) window.addEventListener('load', function() { ZoomAutoComplete_OnLoad('zoom_searchbox');}, false); else if (window.attachEvent) window.attachEvent('onload', function() { ZoomAutoComplete_OnLoad('zoom_searchbox');}); else window['onload'] = function() { ZoomAutoComplete_OnLoad('zoom_searchbox');} </script> <link rel="stylesheet" type="text/css" href="../search/zoom_autocomplete.css" /> <form action="../search/search.asp" method="GET"> <input name="zoom_query" id="zoom_searchbox" type="text" class="ariel" size="25" autocomplete="off"/> <input type="submit" value="Search"> </form>
Eric
Comment