JSearchBox
JSearchBox is an applet which allows you to search lists and display relevant data about matches.
The applet features implicit searching; the search updates as the query is typed in.
How To Use:
Download jsearchbox.zip (24kb) and unzip within your HTML directory.
Create a data file in the format:
SomeWord http://www.somesite.org/whatever/a.html
AnotherWord http://www.anothersite.org/bla/
Create an index file with the Perl script or with the available binary file. (387kb)
Java Source: not available
HTML Source:
<!-- JSearchBox by SmackTech (www.smacktech.com) -->
<applet code="JSearchBox.class" width=250 height=150>
<!-- Required -->
<param name="data_file" value="states.txt">
<param name="index_file" value="states-index.txt">
<!-- Compression -->
<param name="compressed_data_file" value="">
<param name="compressed_index_file" value="">
<!-- Searching -->
<param name="case_sensitive" value="false">
<param name="search_implicitly" value="true">
<param name="min_implicit_query_length" value="1">
<!-- Appearance -->
<param name="show_button" value="true">
<param name="text_bg_color" value="ffffff">
<param name="text_fg_color" value="000000">
<param name="list_bg_color" value="ffffff">
<param name="list_fg_color" value="000000">
<param name="font" value="">
<param name="font_style" value="">
<param name="font_size" value="">
<!-- URLs -->
<param name="default_url" value="http://dir.yahoo.com/Regional/U_S__States/${word}/">
<param name="target" value="_self">
<!-- Messages -->
<param name="search" value="Search">
<param name="open" value="Open">
<param name="loading_file" value="loading file">
<param name="loading_letter" value="Letter:">
<param name="no_matches" value="No matches">
<param name="searching" value="Searching...">
<param name="matches_found" value="matches found">
Author: Sam Makagon
Homepage: http://www.smacktech.com/jsearchbox/
Upload date: July 7, 1999
|